Update version to v2024.12.18

This commit is contained in:
Andrew Hamilton 2024-12-18 00:03:43 +10:00
parent 672b866bfb
commit 2b374ef431
14 changed files with 28 additions and 28 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: Install eris with pipx, then install all the tools eris uses:
pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.17#subdirectory=eris pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=eris
eris --install-all-tools eris --install-all-tools
Or install from source: (includes tools) Or install from source: (includes tools)

View file

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

View file

@ -2,7 +2,7 @@ tool.uv.package = true
[project] [project]
name = "eris" name = "eris"
version = "v2024.12.17" version = "v2024.12.18"
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."
readme = "README.md" readme = "README.md"
authors = [ authors = [
@ -12,13 +12,13 @@ requires-python = ">=3.11"
dependencies = [ dependencies = [
"decorator==5.1.1", "decorator==5.1.1",
"docopt==0.6.2", "docopt==0.6.2",
"fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.12.17#subdirectory=fill3", "fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=fill3",
"lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.17#subdirectory=lscolors", "lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=lscolors",
"pexpect==4.8.0", "pexpect==4.8.0",
"pillow==10.0.0", "pillow==10.0.0",
"pygments==2.16.1", "pygments==2.16.1",
"pyinotify==0.9.6", "pyinotify==0.9.6",
"termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.17#subdirectory=termstr", "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=termstr",
"toml==0.10.2", "toml==0.10.2",
] ]

12
eris/uv.lock generated
View file

@ -24,7 +24,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/a2/55/8f8cab2afd404cf57
[[package]] [[package]]
name = "eris" name = "eris"
version = "2024.12.17" version = "2024.12.18"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "decorator" }, { name = "decorator" },
@ -43,20 +43,20 @@ dependencies = [
requires-dist = [ requires-dist = [
{ name = "decorator", specifier = "==5.1.1" }, { name = "decorator", specifier = "==5.1.1" },
{ name = "docopt", specifier = "==0.6.2" }, { name = "docopt", specifier = "==0.6.2" },
{ name = "fill3", git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.17" }, { 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.17" }, { name = "lscolors", git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.18" },
{ name = "pexpect", specifier = "==4.8.0" }, { name = "pexpect", specifier = "==4.8.0" },
{ name = "pillow", specifier = "==10.0.0" }, { name = "pillow", specifier = "==10.0.0" },
{ name = "pygments", specifier = "==2.16.1" }, { name = "pygments", specifier = "==2.16.1" },
{ name = "pyinotify", specifier = "==0.9.6" }, { name = "pyinotify", specifier = "==0.9.6" },
{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.17" }, { name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" },
{ name = "toml", specifier = "==0.10.2" }, { name = "toml", specifier = "==0.10.2" },
] ]
[[package]] [[package]]
name = "fill3" name = "fill3"
version = "2024.12.7" version = "2024.12.7"
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.17#a6e802e8522aa27551257b32590f045243a0785e" } source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.18#a6e802e8522aa27551257b32590f045243a0785e" }
dependencies = [ dependencies = [
{ name = "termstr" }, { name = "termstr" },
] ]
@ -64,7 +64,7 @@ dependencies = [
[[package]] [[package]]
name = "lscolors" name = "lscolors"
version = "2024.12.7" version = "2024.12.7"
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.17#a6e802e8522aa27551257b32590f045243a0785e" } source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.18#a6e802e8522aa27551257b32590f045243a0785e" }
dependencies = [ dependencies = [
{ name = "termstr" }, { name = "termstr" },
] ]

View file

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

View file

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

6
fill3/uv.lock generated
View file

@ -9,19 +9,19 @@ sdist = { url = "https://files.pythonhosted.org/packages/38/17/aadd0c6190dca91aa
[[package]] [[package]]
name = "fill3" name = "fill3"
version = "2024.12.17" version = "2024.12.18"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "termstr" }, { name = "termstr" },
] ]
[package.metadata] [package.metadata]
requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.17" }] requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" }]
[[package]] [[package]]
name = "termstr" name = "termstr"
version = "2024.12.7" version = "2024.12.7"
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.17#a6e802e8522aa27551257b32590f045243a0785e" } source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18#a6e802e8522aa27551257b32590f045243a0785e" }
dependencies = [ dependencies = [
{ name = "cwcwidth" }, { name = "cwcwidth" },
] ]

View file

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

View file

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

6
lscolors/uv.lock generated
View file

@ -9,19 +9,19 @@ sdist = { url = "https://files.pythonhosted.org/packages/38/17/aadd0c6190dca91aa
[[package]] [[package]]
name = "lscolors" name = "lscolors"
version = "2024.12.17" version = "2024.12.18"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "termstr" }, { name = "termstr" },
] ]
[package.metadata] [package.metadata]
requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.17" }] requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" }]
[[package]] [[package]]
name = "termstr" name = "termstr"
version = "2024.12.7" version = "2024.12.7"
source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.17#a6e802e8522aa27551257b32590f045243a0785e" } source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18#a6e802e8522aa27551257b32590f045243a0785e" }
dependencies = [ dependencies = [
{ name = "cwcwidth" }, { 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: Install eris with pipx, then install all the tools eris uses:
pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.17#subdirectory=eris pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=eris
eris --install-all-tools eris --install-all-tools
Or install from source: (includes tools) Or install from source: (includes tools)

View file

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

View file

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

2
termstr/uv.lock generated
View file

@ -9,7 +9,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/38/17/aadd0c6190dca91aa
[[package]] [[package]]
name = "termstr" name = "termstr"
version = "2024.12.17" version = "2024.12.18"
source = { virtual = "." } source = { virtual = "." }
dependencies = [ dependencies = [
{ name = "cwcwidth" }, { name = "cwcwidth" },