Skip to content

Commit

Permalink
Fix a couple of pip requirement lines (#651)
Browse files Browse the repository at this point in the history
A change in the strictness of how pip requirements lines are parsed
means that the lib needs a tactical fix to enable testing to move
forwards.  A more complete fix is to remove the upper bounds and the
main development branch.
  • Loading branch information
ajkavanagh authored Feb 9, 2023
1 parent 4d6ce75 commit ce4b136
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
'pathspec<0.11;python_version >= "3.7"',
'otherstuf<=1.1.0',
'path.py>=10.5,<13',
'pip>=1.5.4<23',
'pip>=1.5.4,<23',
'jujubundlelib<0.6',
'virtualenv>=1.11.4,<21',
'colander<1.9',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ def _store_wheelhouses(args, **kwargs):
'',
'# --wheelhouse-overrides',
'git+https://github.com/me/qux#egg=qux',
'setuptools_scm>=3.0<=3.4.1',
'setuptools_scm>=3.0,<=3.4.1',
'',
])

Expand Down
2 changes: 1 addition & 1 deletion tests/wh-over.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
git+https://github.com/me/qux#egg=qux
setuptools_scm>=3.0<=3.4.1
setuptools_scm>=3.0,<=3.4.1

0 comments on commit ce4b136

Please sign in to comment.