Skip to content

Commit

Permalink
packaging import fix (#7)
Browse files Browse the repository at this point in the history
* pin pip to a odler version that relies on a older packaging version which still contains the LegacySpecifier class

* add pip to install_requires field within setup.py

* shuffle the Pipfile packages according to alphabetical order

* update setup.py accordingly

* patch version increase
  • Loading branch information
stefan-anmut authored Aug 28, 2024
1 parent 76482d0 commit 878b495
Show file tree
Hide file tree
Showing 3 changed files with 372 additions and 264 deletions.
11 changes: 6 additions & 5 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,18 @@ pytest-xdist = "~=2.0"
tox = "~=3.24"

[packages]
pipfile = "~=0.0"
autopep8 = "~=1.4"
black = {version = "~=22.6" }
colorama = "~=0.4"
packaging = "~=21.0"
pip = "==24.0"
pipfile = "~=0.0"
requirementslib = "~=2.1"
typing = {version = "~=3.7"}
six = "~=1.12"
black = {version = "~=22.6" }
autopep8 = "~=1.4"
typing = {version = "~=3.7"}

[scripts]
# use this to sync this pipfile to setup.py, explained in CONTRIBUTING.md
# `$ pipenv run sync-deps`
sync-deps = 'python -m pipenv_setup sync --dev --pipfile'
push_test = "pipenv run pre-commit run --hook-stage push"
push_test = "pipenv run pre-commit run --hook-stage push"
Loading

0 comments on commit 878b495

Please sign in to comment.