Browse Source

Merge branch 'master' of github.com:algoo/hapic

Damien Accorsi 6 years ago
parent
commit
2222914d6f
1 changed files with 2 additions and 6 deletions
  1. 2 6
      setup.py

+ 2 - 6
setup.py View File

@@ -8,12 +8,9 @@ here = path.abspath(path.dirname(__file__))
8 8
 
9 9
 install_requires = [
10 10
     'marshmallow',
11
-    'apispec==0.27.1-algoo',
11
+    'apispec',
12 12
     'multidict'
13 13
 ]
14
-dependency_links = [
15
-    'git+https://github.com/algoo/apispec.git@dev-fork#egg=apispec-0.27.1-algoo'  # nopep8
16
-]
17 14
 tests_require = [
18 15
     'pytest',
19 16
     'pytest-cov',
@@ -32,7 +29,7 @@ setup(
32 29
     # Versions should comply with PEP440.  For a discussion on single-sourcing
33 30
     # the version across setup.py and the project code, see
34 31
     # https://packaging.python.org/en/latest/single_source_version.html
35
-    version='0.21',
32
+    version='0.22',
36 33
 
37 34
     description='HTTP api input/output manager',
38 35
     # long_description=long_description,
@@ -64,7 +61,6 @@ setup(
64 61
     # requirements files see:
65 62
     # https://packaging.python.org/en/latest/requirements.html
66 63
     install_requires=install_requires,
67
-    dependency_links=dependency_links,
68 64
 
69 65
     # List additional groups of dependencies here (e.g. development
70 66
     # dependencies). You can install these using the following syntax,