Update version to v2024.12.07
This commit is contained in:
parent
8a00033a69
commit
a6e802e852
10 changed files with 15 additions and 15 deletions
|
|
@ -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:
|
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
|
eris --install-all-tools
|
||||||
|
|
||||||
Or install from source: (includes tools)
|
Or install from source: (includes tools)
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
|
|
||||||
|
|
||||||
__version__ = "v2024.07.11"
|
__version__ = "v2024.12.07"
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ except ImportError:
|
||||||
|
|
||||||
|
|
||||||
setup(name="eris",
|
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."),
|
description=("Eris maintains an up-to-date set of reports for every file in a codebase."),
|
||||||
url="https://github.com/ahamilton/eris",
|
url="https://github.com/ahamilton/eris",
|
||||||
author="Andrew Hamilton",
|
author="Andrew Hamilton",
|
||||||
|
|
@ -25,6 +25,6 @@ setup(name="eris",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"pyinotify==0.9.6", "pygments==2.16.1", "docopt==0.6.2", "pillow==10.0.0", "toml==0.10.2",
|
"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",
|
"decorator==5.1.1", "pexpect==4.8.0",
|
||||||
"fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=fill3",
|
"fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=fill3",
|
||||||
"termstr @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=termstr",
|
"termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=termstr",
|
||||||
"lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=lscolors"])
|
"lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=lscolors"])
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ import fill3.terminal as terminal
|
||||||
import termstr
|
import termstr
|
||||||
|
|
||||||
|
|
||||||
__version__ = "v2024.07.11"
|
__version__ = "v2024.12.07"
|
||||||
|
|
||||||
|
|
||||||
##########################
|
##########################
|
||||||
|
|
|
||||||
|
|
@ -9,11 +9,11 @@ except ImportError:
|
||||||
|
|
||||||
|
|
||||||
setup(name="fill3",
|
setup(name="fill3",
|
||||||
version="v2024.07.11",
|
version="v2024.12.07",
|
||||||
description=("Fill3 provides basic widgets for a tui."),
|
description=("Fill3 provides basic widgets for a tui."),
|
||||||
url="https://github.com/ahamilton/eris",
|
url="https://github.com/ahamilton/eris",
|
||||||
author="Andrew Hamilton",
|
author="Andrew Hamilton",
|
||||||
author_email="and_hamilton@yahoo.com",
|
author_email="and_hamilton@yahoo.com",
|
||||||
license="Artistic 2.0",
|
license="Artistic 2.0",
|
||||||
packages=["fill3"],
|
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"])
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ import lscolors
|
||||||
import termstr
|
import termstr
|
||||||
|
|
||||||
|
|
||||||
__version__ = "v2024.07.11"
|
__version__ = "v2024.12.07"
|
||||||
|
|
||||||
|
|
||||||
FILE_KEY = "fi"
|
FILE_KEY = "fi"
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ except ImportError:
|
||||||
|
|
||||||
|
|
||||||
setup(name="lscolors",
|
setup(name="lscolors",
|
||||||
version="v2024.07.11",
|
version="v2024.12.07",
|
||||||
description=("Give coloring for file types as in the ls command."),
|
description=("Give coloring for file types as in the ls command."),
|
||||||
url="https://github.com/ahamilton/eris",
|
url="https://github.com/ahamilton/eris",
|
||||||
author="Andrew Hamilton",
|
author="Andrew Hamilton",
|
||||||
|
|
@ -17,4 +17,4 @@ setup(name="lscolors",
|
||||||
license="Artistic 2.0",
|
license="Artistic 2.0",
|
||||||
packages=["lscolors"],
|
packages=["lscolors"],
|
||||||
package_data={"lscolors": ["LS_COLORS.sh"]},
|
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"])
|
||||||
|
|
|
||||||
|
|
@ -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:
|
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
|
eris --install-all-tools
|
||||||
|
|
||||||
Or install from source: (includes tools)
|
Or install from source: (includes tools)
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ except ImportError:
|
||||||
|
|
||||||
|
|
||||||
setup(name="termstr",
|
setup(name="termstr",
|
||||||
version="v2024.07.11",
|
version="v2024.12.07",
|
||||||
description=("Termstr provides strings with extra terminal styling."),
|
description=("Termstr provides strings with extra terminal styling."),
|
||||||
url="https://github.com/ahamilton/eris",
|
url="https://github.com/ahamilton/eris",
|
||||||
author="Andrew Hamilton",
|
author="Andrew Hamilton",
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import weakref
|
||||||
import cwcwidth
|
import cwcwidth
|
||||||
|
|
||||||
|
|
||||||
__version__ = "v2024.07.11"
|
__version__ = "v2024.12.07"
|
||||||
|
|
||||||
|
|
||||||
ESC = "\x1b"
|
ESC = "\x1b"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue