Skip to content

Commit

Permalink
#384: Pin cx_freeze version to 5.1.1
Browse files Browse the repository at this point in the history
Also pin all other required package version
  • Loading branch information
ataffanel committed Oct 30, 2019
1 parent dfa4544 commit 47b0382
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def relative(lst, base=''):
platform_requires = []
platform_dev_requires = []
if sys.platform == 'win32' or sys.platform == 'darwin':
platform_requires = ['pysdl2']
platform_requires = ['pysdl2==0.9.6']
if sys.platform == 'win32':
platform_dev_requires = ['cx_freeze', 'jinja2']
platform_dev_requires = ['cx_freeze==5.1.1', 'jinja2==2.10.3']

package_data = {
'cfclient.ui': relative(glob('src/cfclient/ui/*.ui')),
Expand Down Expand Up @@ -129,9 +129,9 @@ def relative(lst, base=''):

install_requires=platform_requires + ['cflib>=0.1.8',
'appdirs>=1.4.0',
'pyzmq',
'pyzmq==18.1.0',
'pyqtgraph>=0.10',
'PyYAML',
'PyYAML==5.1.2',
'quamash==0.6.1',
'qtm>=2.0.2'],

Expand Down

0 comments on commit 47b0382

Please sign in to comment.