Update version to v2024.12.07

This commit is contained in:
Andrew Hamilton 2024-12-07 23:23:08 +10:00
parent 8a00033a69
commit a6e802e852
10 changed files with 15 additions and 15 deletions

View file

@ -10,7 +10,7 @@ Eris maintains an up-to-date set of reports for every file in a codebase.
Install eris with pipx, then install all the tools eris uses:
pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=eris
pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=eris
eris --install-all-tools
Or install from source: (includes tools)

View file

@ -1,3 +1,3 @@
__version__ = "v2024.07.11"
__version__ = "v2024.12.07"

View file

@ -9,7 +9,7 @@ except ImportError:
setup(name="eris",
version="v2024.07.11",
version="v2024.12.07",
description=("Eris maintains an up-to-date set of reports for every file in a codebase."),
url="https://github.com/ahamilton/eris",
author="Andrew Hamilton",
@ -25,6 +25,6 @@ setup(name="eris",
install_requires=[
"pyinotify==0.9.6", "pygments==2.16.1", "docopt==0.6.2", "pillow==10.0.0", "toml==0.10.2",
"decorator==5.1.1", "pexpect==4.8.0",
"fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=fill3",
"termstr @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=termstr",
"lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=lscolors"])
"fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=fill3",
"termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=termstr",
"lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=lscolors"])

View file

@ -15,7 +15,7 @@ import fill3.terminal as terminal
import termstr
__version__ = "v2024.07.11"
__version__ = "v2024.12.07"
##########################

View file

@ -9,11 +9,11 @@ except ImportError:
setup(name="fill3",
version="v2024.07.11",
version="v2024.12.07",
description=("Fill3 provides basic widgets for a tui."),
url="https://github.com/ahamilton/eris",
author="Andrew Hamilton",
author_email="and_hamilton@yahoo.com",
license="Artistic 2.0",
packages=["fill3"],
install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=termstr"])
install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=termstr"])

View file

@ -15,7 +15,7 @@ import lscolors
import termstr
__version__ = "v2024.07.11"
__version__ = "v2024.12.07"
FILE_KEY = "fi"

View file

@ -9,7 +9,7 @@ except ImportError:
setup(name="lscolors",
version="v2024.07.11",
version="v2024.12.07",
description=("Give coloring for file types as in the ls command."),
url="https://github.com/ahamilton/eris",
author="Andrew Hamilton",
@ -17,4 +17,4 @@ setup(name="lscolors",
license="Artistic 2.0",
packages=["lscolors"],
package_data={"lscolors": ["LS_COLORS.sh"]},
install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=termstr"])
install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=termstr"])

View file

@ -26,7 +26,7 @@ Eris maintains an up-to-date set of reports for every file in a codebase.
Install eris with pipx, then install all the tools eris uses:
pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=eris
pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=eris
eris --install-all-tools
Or install from source: (includes tools)

View file

@ -8,7 +8,7 @@ except ImportError:
setup(name="termstr",
version="v2024.07.11",
version="v2024.12.07",
description=("Termstr provides strings with extra terminal styling."),
url="https://github.com/ahamilton/eris",
author="Andrew Hamilton",

View file

@ -10,7 +10,7 @@ import weakref
import cwcwidth
__version__ = "v2024.07.11"
__version__ = "v2024.12.07"
ESC = "\x1b"