Skip to content

Commit 47b0382

Browse files
committed
#384: Pin cx_freeze version to 5.1.1
Also pin all other required package version
1 parent dfa4544 commit 47b0382

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ def relative(lst, base=''):
7777
platform_requires = []
7878
platform_dev_requires = []
7979
if sys.platform == 'win32' or sys.platform == 'darwin':
80-
platform_requires = ['pysdl2']
80+
platform_requires = ['pysdl2==0.9.6']
8181
if sys.platform == 'win32':
82-
platform_dev_requires = ['cx_freeze', 'jinja2']
82+
platform_dev_requires = ['cx_freeze==5.1.1', 'jinja2==2.10.3']
8383

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

130130
install_requires=platform_requires + ['cflib>=0.1.8',
131131
'appdirs>=1.4.0',
132-
'pyzmq',
132+
'pyzmq==18.1.0',
133133
'pyqtgraph>=0.10',
134-
'PyYAML',
134+
'PyYAML==5.1.2',
135135
'quamash==0.6.1',
136136
'qtm>=2.0.2'],
137137

0 commit comments

Comments
 (0)