Skip to content

Commit 909c51d

Browse files
committed
Merge branch 'fix_requirements' into 'dev'
Fix requirements See merge request !44
2 parents 5da4c6f + 54432a2 commit 909c51d

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

requirements.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
six
2-
simplejson
3-
delorean
1+
six==1.13.0
2+
simplejson==3.17.0
3+
delorean==1.0.0
44
pandas==0.24.2
5-
python-dateutil
6-
pytz
5+
python-dateutil==2.8.1
6+
pytz==2019.3
77
pyasn1==0.4.2
88
rsa==4.0
9-
stomp.py
9+
stomp.py==4.1.22
10+
enum34==1.1.6

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from os import path
88
from setuptools import find_packages, setup
99

10-
with open(path.join(path.abspath(path.dirname(__file__)), 'requirements.txt'), encoding='utf-8') as f:
10+
with open(path.join(path.abspath(path.dirname(__file__)), 'requirements.txt')) as f:
1111
install_requires = f.read()
1212

1313
setup(

0 commit comments

Comments
 (0)