Update pip install commands to workaround new pip resolver

- lscolors dependency is now a package containing the LSCOLORS
  database and the path_colored function.
- The new pip dependency resolver finds a conflict with fill3 and
  lscolors both depending on termstr, eventhough its the same
  version of termstr??
This commit is contained in:
Andrew Hamilton 2022-05-11 23:04:41 +10:00
parent 41120f7e81
commit 8ed82c768b
6 changed files with 14 additions and 828 deletions

View file

@ -18,5 +18,6 @@ setup(name="diff-edit",
entry_points={"console_scripts": ["diff-edit=diff_edit:main"]},
install_requires=[
"pygments==2.10.0", "docopt==0.6.2",
"fill3 @ git+https://github.com/ahamilton/eris@v2022.04.30#subdirectory=fill3",
"lscolors @ git+https://github.com/ahamilton/eris@v2022.04.30#subdirectory=lscolors"])
"termstr @ git+https://github.com/ahamilton/eris@v2022.05.11#subdirectory=termstr",
"fill3 @ git+https://github.com/ahamilton/eris@v2022.05.11#subdirectory=fill3",
"lscolors @ git+https://github.com/ahamilton/eris@v2022.05.11#subdirectory=lscolors"])