Update version to v2025.06.02

This commit is contained in:
Andrew Hamilton 2025-06-02 19:00:19 +10:00
parent d0f4bd7d1e
commit aa8088615d
13 changed files with 25 additions and 25 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.12.18#subdirectory=eris
pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2025.06.02#subdirectory=eris
eris --install-all-tools
Or install from source: (includes tools)

View file

@ -1,3 +1,3 @@
__version__ = "v2024.12.18"
__version__ = "v2025.06.02"

View file

@ -2,7 +2,7 @@ tool.uv.package = true
[project]
name = "eris"
version = "v2024.12.18"
version = "v2025.06.02"
description = "Eris maintains an up-to-date set of reports for every file in a codebase."
readme = "README.md"
authors = [
@ -12,13 +12,13 @@ requires-python = ">=3.11"
dependencies = [
"decorator==5.1.1",
"docopt==0.6.2",
"fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=fill3",
"lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=lscolors",
"fill3 @ git+https://gitlab.com/ahamilton/eris@v2025.06.02#subdirectory=fill3",
"lscolors @ git+https://gitlab.com/ahamilton/eris@v2025.06.02#subdirectory=lscolors",
"pexpect==4.9.0",
"pillow==11.2.1",
"pygments==2.19.1",
"pyinotify-elephant-fork==0.0.1",
"termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=termstr"
"termstr @ git+https://gitlab.com/ahamilton/eris@v2025.06.02#subdirectory=termstr"
]
[project.scripts]

12
eris/uv.lock generated
View file

@ -43,20 +43,20 @@ dependencies = [
requires-dist = [
{ name = "decorator", specifier = "==5.1.1" },
{ name = "docopt", specifier = "==0.6.2" },
{ name = "fill3", git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.18" },
{ name = "lscolors", git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.18" },
{ name = "fill3", git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2025.06.02" },
{ name = "lscolors", git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2025.06.02" },
{ name = "pexpect", specifier = "==4.9.0" },
{ name = "pillow", specifier = "==11.2.1" },
{ name = "pygments", specifier = "==2.19.1" },
{ name = "pyinotify-elephant-fork", specifier = "==0.0.1" },
{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" },
{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2025.06.02" },
{ name = "toml", specifier = "==0.10.2" },
]
[[package]]
name = "fill3"
version = "2024.12.18"
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.18#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" }
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2025.06.02#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" }
dependencies = [
{ name = "termstr" },
]
@ -64,7 +64,7 @@ dependencies = [
[[package]]
name = "lscolors"
version = "2024.12.18"
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.18#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" }
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2025.06.02#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" }
dependencies = [
{ name = "termstr" },
]
@ -167,7 +167,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/d6/b4/b44fccc7040b01449
[[package]]
name = "termstr"
version = "2024.12.18"
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" }
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2025.06.02#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" }
dependencies = [
{ name = "cwcwidth" },
]

View file

@ -15,7 +15,7 @@ import fill3.terminal as terminal
import termstr
__version__ = "v2024.12.18"
__version__ = "v2025.06.02"
##########################

View file

@ -2,14 +2,14 @@ tool.uv.package = true
[project]
name = "fill3"
version = "v2024.12.18"
version = "v2025.06.02"
description = "Fill3 provides basic widgets for a tui."
authors = [
{ name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" },
]
requires-python = ">=3.11"
dependencies = [
"termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=termstr",
"termstr @ git+https://gitlab.com/ahamilton/eris@v2025.06.02#subdirectory=termstr",
]
[project.urls]

4
fill3/uv.lock generated
View file

@ -16,12 +16,12 @@ dependencies = [
]
[package.metadata]
requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" }]
requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2025.06.02" }]
[[package]]
name = "termstr"
version = "2024.12.18"
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" }
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2025.06.02#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" }
dependencies = [
{ name = "cwcwidth" },
]

View file

@ -15,7 +15,7 @@ import lscolors
import termstr
__version__ = "v2024.12.18"
__version__ = "v2025.06.02"
FILE_KEY = "fi"

View file

@ -7,14 +7,14 @@ allow-direct-references = true
[project]
name = "lscolors"
version = "v2024.12.18"
version = "v2025.06.02"
description = "Give coloring for file types as in the ls command."
authors = [
{ name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" },
]
requires-python = ">=3.11"
dependencies = [
"termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=termstr",
"termstr @ git+https://gitlab.com/ahamilton/eris@v2025.06.02#subdirectory=termstr",
]
[project.urls]

4
lscolors/uv.lock generated
View file

@ -16,12 +16,12 @@ dependencies = [
]
[package.metadata]
requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" }]
requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2025.06.02" }]
[[package]]
name = "termstr"
version = "2024.12.18"
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" }
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2025.06.02#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" }
dependencies = [
{ name = "cwcwidth" },
]

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.12.18#subdirectory=eris
pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2025.06.02#subdirectory=eris
eris --install-all-tools
Or install from source: (includes tools)

View file

@ -1,6 +1,6 @@
[project]
name = "termstr"
version = "v2024.12.18"
version = "v2025.06.02"
description = "Termstr provides strings with extra terminal styling."
authors = [
{ name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" },

View file

@ -10,7 +10,7 @@ import weakref
import cwcwidth
__version__ = "v2024.12.18"
__version__ = "v2025.06.02"
ESC = "\x1b"