Skip to content

Commit

Permalink
Binds python-arango version to <5 and >4 (#2)
Browse files Browse the repository at this point in the history
* Binds python-arango version to <5 and >4

* Fix package version, fix sphinx version
  • Loading branch information
ravenoak committed Aug 22, 2019
1 parent 780cbaa commit 0885f05
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Generated file, do not edit
arango-orm>=0.5.3
python-arango<5,>4
Flask>=1.0.0
setuptools
pytest-runner
Sphinx>=1.8.0
Sphinx<2,>=1.8.0
sphinx_rtd_theme
pytest>=4.3.0
pytest-cov
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ url = https://github.com/QuaererePlatform/Flask-arango-orm
[bumpversion]
commit = True
tag = True
current_version = 0.1.0
current_version = 0.1.1.dev0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<micro>\d+)((?P<pre_release>a|b|rc)(?P<pre_release_num>\d+))?(\.dev(?P<dev_num>\d+))?
serialize =
{major}.{minor}.{micro}{pre_release}{pre_release_num}.dev{dev_num}
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@
from setuptools.command.install import install

PROJECT_NAME = 'Flask-arango-orm'
PROJECT_RELEASE = '0.1.0'
PROJECT_RELEASE = '0.1.1.dev0'
PROJECT_VERSION = '.'.join(PROJECT_RELEASE.split('.')[:2])
INSTALL_REQUIRES = [
'arango-orm>=0.5.3',
'python-arango<5,>4',
'Flask>=1.0.0', ]
SETUP_REQUIRES = [
'setuptools',
'pytest-runner',
'Sphinx>=1.8.0',
'Sphinx<2,>=1.8.0',
'sphinx_rtd_theme', ]
TESTS_REQUIRES = [
'pytest>=4.3.0',
Expand Down

0 comments on commit 0885f05

Please sign in to comment.