Skip to content

Commit

Permalink
Pin all versions
Browse files Browse the repository at this point in the history
  • Loading branch information
EntilZha committed Jun 6, 2016
1 parent 2443209 commit f9e33ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
future
six
dill
bz2file
future==0.15.2
six==1.10.0
dill==0.2.5
bz2file==0.98
backports.lzma==0.0.3
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
long_description = open('README.md').read()

if sys.version_info.major == 2 or '__pypy__' in sys.builtin_module_names:
install_requires = ['future', 'six', 'dill', 'bz2file', 'backports.lzma==0.0.3']
install_requires = ['future==0.15.2', 'six==1.10.0', 'dill==0.2.5', 'bz2file==0.98',
'backports.lzma==0.0.3']
else:
install_requires = ['future', 'six', 'dill']
install_requires = ['future==0.15.2', 'six==1.10.0', 'dill==0.2.5']

setup(
name='PyFunctional',
Expand Down

0 comments on commit f9e33ff

Please sign in to comment.