Skip to content

Commit f9e33ff

Browse files
committed
Pin all versions
1 parent 2443209 commit f9e33ff

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
future
2-
six
3-
dill
4-
bz2file
1+
future==0.15.2
2+
six==1.10.0
3+
dill==0.2.5
4+
bz2file==0.98
55
backports.lzma==0.0.3

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
long_description = open('README.md').read()
99

1010
if sys.version_info.major == 2 or '__pypy__' in sys.builtin_module_names:
11-
install_requires = ['future', 'six', 'dill', 'bz2file', 'backports.lzma==0.0.3']
11+
install_requires = ['future==0.15.2', 'six==1.10.0', 'dill==0.2.5', 'bz2file==0.98',
12+
'backports.lzma==0.0.3']
1213
else:
13-
install_requires = ['future', 'six', 'dill']
14+
install_requires = ['future==0.15.2', 'six==1.10.0', 'dill==0.2.5']
1415

1516
setup(
1617
name='PyFunctional',

0 commit comments

Comments
 (0)