Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies to support Py3.10 #550

Merged
merged 1 commit into from
Jan 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,6 @@ def relative(lst, base=''):
if sys.platform == 'win32':
platform_dev_requires.extend(['cx_freeze==5.1.1', 'jinja2==2.10.3'])

# Only install the latest pyqt for Linux and Mac
# On Windows, the latest version that does not have performance problems
# is 5.12
if sys.platform == 'win32':
platform_requires += ['pyqt5~=5.12.0']
else:
platform_requires += ['pyqt5~=5.15.0']


package_data = {
'cfclient.ui': relative(glob('src/cfclient/ui/*.ui')),
'cfclient.ui.tabs': relative(glob('src/cfclient/ui/tabs/*.ui')),
Expand Down Expand Up @@ -134,14 +125,15 @@ def relative(lst, base=''):

install_requires=platform_requires + ['cflib>=0.1.16',
'appdirs~=1.4.0',
'pyzmq~=19.0',
'pyzmq~=22.3',
'pyqtgraph~=0.11',
'PyYAML~=5.3',
'asyncqt~=0.8.0',
'qtm~=2.0.2',
'numpy>=1.19.2,<1.24',
'vispy~=0.6.6',
'pyserial~=3.5'],
'vispy~=0.9.0',
'pyserial~=3.5',
'pyqt5~=5.15.0'],

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