Skip to content

Commit

Permalink
Fix dep version strings
Browse files Browse the repository at this point in the history
  • Loading branch information
ravenoak committed Sep 18, 2019
1 parent a01bffd commit 54d0833
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
@@ -1,7 +1,7 @@
# Generated file, do not edit
marshmallow>=2.16.0,<3
marshmallow<3,>=2.16.0
pytest-runner
Sphinx>=1.8.0,<2
Sphinx<2,>=1.8.0
sphinx-rtd-theme
setuptools
pytest>=4.2.0
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -9,10 +9,10 @@

PROJECT_NAME = 'quaerere-base-common'
INSTALL_REQUIRES = [
'marshmallow>=2.16.0,<3', ]
'marshmallow<3,>=2.16.0', ]
SETUP_REQUIRES = [
'pytest-runner',
'Sphinx>=1.8.0,<2',
'Sphinx<2,>=1.8.0',
'sphinx-rtd-theme',
'setuptools', ]
TESTS_REQUIRES = [
Expand Down

0 comments on commit 54d0833

Please sign in to comment.