Skip to content

Commit

Permalink
#436: Bump depedencies version and use ~= req.
Browse files Browse the repository at this point in the history
  • Loading branch information
ataffanel committed Sep 2, 2020
1 parent 04db823 commit 3fb0f4a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,21 +127,21 @@ def relative(lst, base=''):
],
},

install_requires=platform_requires + ['cflib>=0.1.9',
'appdirs>=1.4.0',
'pyzmq>=18.1.0',
'pyqtgraph>=0.10',
'PyYAML>=5.1.2',
'quamash==0.6.1',
'qtm>=2.0.2'],
install_requires=platform_requires + ['cflib~=0.1.11',
'appdirs~=1.4.0',
'pyzmq~=19.0',
'pyqtgraph~=0.11',
'PyYAML~=5.3',
'quamash~=0.6.1',
'qtm~=2.0.2'],

# List of dev and qt dependencies
# Pyqt5 5.12.1 is the last version that does not cause performance problems
# You can install them by running
# $ pip install -e .[dev,qt5]
extras_require={
'dev': platform_dev_requires + [],
'qt5': ['PyQt5==5.12.1']
'qt5': ['PyQt5~=5.15']
},

package_data=package_data,
Expand Down

0 comments on commit 3fb0f4a

Please sign in to comment.