Skip to content

Commit c8aac23

Browse files
authored
Fix invalid specifier in stone requirement (#456)
1 parent 9895d70 commit c8aac23

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Dependencies required for installation (keep in sync with setup.py)
22
requests >= 2.16.2
33
six >= 1.12.0
4-
stone >= 2.*
4+
stone >= 2
55
# Other dependencies for development
66
ply
77
pytest

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
install_reqs = [
2828
'requests >= 2.16.2',
2929
'six >= 1.12.0',
30-
'stone >= 2.*',
30+
'stone >= 2',
3131
]
3232

3333
setup_requires = [

test/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ pytest
22
mock
33
pytest-mock
44
coverage
5-
stone>=2.*
5+
stone>=2

0 commit comments

Comments
 (0)