Skip to content

Commit 0ff90ed

Browse files
committed
Removed dependency version pinning, this should fix #334
1 parent eb1f943 commit 0ff90ed

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Pipfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ coverage = "*"
88
coveralls = "*"
99
Jinja2 = "*"
1010
pip = ">=18.0"
11-
pproxy = "==2.2.0"
11+
pproxy = ">=2.2.0,<3"
1212
pytest = "*"
1313
recommonmark = "*"
1414
Sphinx = "*"
15-
sphinx-readable-theme = ""==1.3.0"
15+
sphinx-readable-theme = "*"
1616
tox = "*"
1717
tox-travis = "*"
1818
virtualenv = "*"
1919
twine = "*"
2020

2121

2222
[packages]
23-
requests = "<3,==2.20.0"
24-
geojson = "<3,==2.3.0"
25-
PySocks = "<2,==1.7.1"
26-
requests[socks] = "*"
23+
requests = "<3,>=2.20.0"
24+
geojson = "<3,>=2.3.0"
25+
PySocks = "<2,>=1.7.1"
26+
"requests[socks]" = "*"

dev-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ coverage
22
coveralls
33
Jinja2
44
pip>=18.0
5-
pproxy<3
5+
pproxy>=2.2.0,<3
66
pytest
77
recommonmark
88
Sphinx

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
geojson>=2.3.0,<3
2-
PySocks==1.7.1,<2
2+
PySocks>=1.7.1,<2
33
requests>=2.20.0,<3
44
requests[socks]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
install_requires=[
1919
'requests>=2.20.0,<3',
2020
'geojson>=2.3.0,<3',
21-
'PySocks==1.7.1,<2',
21+
'PySocks>=1.7.1,<2',
2222
'requests[socks]'
2323
],
2424
python_requires='>=3.7',

0 commit comments

Comments
 (0)