Skip to content

Commit

Permalink
Closes #453: Update vispy to version ~=0.6.6
Browse files Browse the repository at this point in the history
Fixes running client on Python 3.9
  • Loading branch information
Arnaud Taffanel authored and Arnaud Taffanel committed Dec 15, 2020
1 parent acd8f85 commit a2d1f77
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,6 @@ def relative(lst, base=''):
else:
platform_requires += ['pyqt5~=5.15.0']

# Current version of vispy do not support Python 3.9
# Getting Vispy form git if running in python 3.9
if sys.version_info[:2] == (3, 9):
platform_requires += [
'vispy @ git+https://github.com/vispy/vispy@74d9461d'
]
else:
platform_requires += ['vispy~=0.6.5']

package_data = {
'cfclient.ui': relative(glob('src/cfclient/ui/*.ui')),
Expand Down Expand Up @@ -165,7 +157,8 @@ def relative(lst, base=''):
'PyYAML~=5.3',
'quamash~=0.6.1',
'qtm~=2.0.2',
'numpy~=1.19.2'],
'numpy~=1.19.2',
'vispy~=0.6.6'],

# List of dev dependencies
# You can install them by running
Expand Down

0 comments on commit a2d1f77

Please sign in to comment.