Skip to content

Commit

Permalink
Use the last version of python-aio-etcd
Browse files Browse the repository at this point in the history
  • Loading branch information
titilambert committed Sep 2, 2017
1 parent b7f3a53 commit 99ae002
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ jinja2==2.9.6
paho-mqtt==1.3.0
python-etcd==0.4.5
setproctitle==1.1.10
-e git+https://github.com/TuxEatPi/python-aio-etcd.git#egg=aio_etcd
https://github.com/TuxEatPi/python-aio-etcd/archive/0.4.5.0.tep.1.zip
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
]

install_reqs = parse_requirements('requirements.txt', session=session)
raw_reqs = [r for r in install_reqs],
dep_links = [(r.link.url) for r in raw_reqs[0] if r.link]
requirements = [str(r.req) for r in raw_reqs[0] if r.link is None],
test_reqs = parse_requirements('test_requirements.txt', session=session)

setup(
Expand All @@ -45,6 +48,7 @@
classifiers=(
'Programming Language :: Python :: 3.5',
),
install_requires=[str(r.req) for r in install_reqs],
install_requires=requirements,
tests_require=[str(r.req) for r in test_reqs],
dependency_links=dep_links
)

0 comments on commit 99ae002

Please sign in to comment.