From 5da5f07e0aed51b04e6a811056e9f34a10a26ae6 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Thu, 16 Dec 2021 20:39:28 +1000 Subject: [PATCH] Storing less versions if possible. - Trying to do without versions in setup.py and requirements.txt. - The git tags define the versions. - The seperate python packages aren't independant atm. - Eris uses the latest versions of its dependencies, not pinned older ones. --- eris/requirements.txt | 6 +++--- eris/setup.py | 1 - fill3/requirements.txt | 2 +- fill3/setup.py | 1 - install | 6 ++---- lscolors/setup.py | 1 - termstr/setup.py | 1 - 7 files changed, 6 insertions(+), 12 deletions(-) diff --git a/eris/requirements.txt b/eris/requirements.txt index 0f6b96a..6c8bac5 100644 --- a/eris/requirements.txt +++ b/eris/requirements.txt @@ -5,6 +5,6 @@ pillow==8.4.0 toml==0.10.2 decorator==5.1.0 pexpect==4.8.0 -termstr==2021.10.18 -fill3==2021.10.18 -lscolors==2021.10.18 +./termstr +./fill3 +./lscolors diff --git a/eris/setup.py b/eris/setup.py index 3111a0b..5936d00 100755 --- a/eris/setup.py +++ b/eris/setup.py @@ -8,7 +8,6 @@ except ImportError: setup(name="eris", - version="2021.10.18", 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", diff --git a/fill3/requirements.txt b/fill3/requirements.txt index 4bfe17b..185608d 100644 --- a/fill3/requirements.txt +++ b/fill3/requirements.txt @@ -1 +1 @@ -termstr==2021.10.18 +./termstr diff --git a/fill3/setup.py b/fill3/setup.py index 1c5be99..820e446 100755 --- a/fill3/setup.py +++ b/fill3/setup.py @@ -8,7 +8,6 @@ except ImportError: setup(name="fill3", - version="2021.10.18", description=("Fill3 provides basic widgets for a tui."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", diff --git a/install b/install index 09b3d69..eeb9392 100755 --- a/install +++ b/install @@ -5,8 +5,6 @@ set -e sudo apt-get install -y python3.9 python3-pip -python3.9 -m pip install -r ./termstr/requirements.txt $1 ./termstr \ - -r ./fill3/requirements.txt $1 ./fill3 \ - $1 ./lscolors \ - -r ./eris/requirements.txt $1 ./eris +python3.9 -m pip install -r ./eris/requirements.txt ./eris +# python3.9 -m pip install -e ./eris -e ./termstr -e ./fill3 -e ./lscolors # When developing. ./install-tools diff --git a/lscolors/setup.py b/lscolors/setup.py index 2b2dd5a..fffa203 100755 --- a/lscolors/setup.py +++ b/lscolors/setup.py @@ -8,7 +8,6 @@ except ImportError: setup(name="lscolors", - version="2021.10.18", description=("Give coloring for file types as in the ls command."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", diff --git a/termstr/setup.py b/termstr/setup.py index c6b8e2b..ecc0818 100755 --- a/termstr/setup.py +++ b/termstr/setup.py @@ -8,7 +8,6 @@ except ImportError: setup(name="termstr", - version="2021.10.18", description=("Termstr provides strings with extra terminal styling."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton",