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.
This commit is contained in:
parent
7abf025671
commit
5da5f07e0a
7 changed files with 6 additions and 12 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
termstr==2021.10.18
|
||||
./termstr
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
6
install
6
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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue