Skip to content

Commit ce4b136

Browse files
authored
Fix a couple of pip requirement lines (#651)
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.
1 parent 4d6ce75 commit ce4b136

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
'pathspec<0.11;python_version >= "3.7"',
5353
'otherstuf<=1.1.0',
5454
'path.py>=10.5,<13',
55-
'pip>=1.5.4<23',
55+
'pip>=1.5.4,<23',
5656
'jujubundlelib<0.6',
5757
'virtualenv>=1.11.4,<21',
5858
'colander<1.9',

tests/test_build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ def _store_wheelhouses(args, **kwargs):
486486
'',
487487
'# --wheelhouse-overrides',
488488
'git+https://github.com/me/qux#egg=qux',
489-
'setuptools_scm>=3.0<=3.4.1',
489+
'setuptools_scm>=3.0,<=3.4.1',
490490
'',
491491
])
492492

tests/wh-over.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
git+https://github.com/me/qux#egg=qux
2-
setuptools_scm>=3.0<=3.4.1
2+
setuptools_scm>=3.0,<=3.4.1

0 commit comments

Comments
 (0)