Skip to content

Commit

Permalink
avoid error in pyqtgraph
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhrisca committed Jan 5, 2021
1 parent 4dec10f commit 7465baa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ for:
& "$PY\\python.exe" -m pip install -r test/requirements.txt --no-warn-script-location

if (($Env:APPVEYOR_REPO_BRANCH -eq $Env:EXE_BRANCH) -and ($PY -eq "C:\\Python37-x64")) {
& "$PY\\python.exe" -m pip install lxml natsort psutil PyQt5>=5.13.1 pyqtgraph>=0.11.0 h5py fastparquet scipy hdf5storage snappy cChardet==2.1.5 chardet --no-warn-script-location
& "$PY\\python.exe" -m pip install lxml natsort psutil PyQt5>=5.13.1 pyqtgraph==0.11.0 h5py fastparquet scipy hdf5storage snappy cChardet==2.1.5 chardet --no-warn-script-location
& "$PY\\python.exe" -m pip install . --no-warn-script-location
& "$PY\\python.exe" -m pip install pyinstaller --no-warn-script-location
& "$PY\\Scripts\\pyinstaller" asammdf_noconsole.spec
Expand Down Expand Up @@ -144,7 +144,7 @@ for:
if [[ $APPVEYOR_REPO_BRANCH == $EXE_BRANCH && $PY == "venv3.7" ]]
then
pip install lxml natsort psutil PyQt5>=5.13.1 pyqtgraph>=0.11.0 h5py fastparquet scipy hdf5storage snappy cChardet==2.1.5 chardet --no-warn-script-location
pip install lxml natsort psutil PyQt5>=5.13.1 pyqtgraph==0.11.0 h5py fastparquet scipy hdf5storage snappy cChardet==2.1.5 chardet --no-warn-script-location
pip3 install .
pip3 install pyinstaller
pyinstaller asammdf_noconsole.spec
Expand Down Expand Up @@ -246,7 +246,7 @@ for:
if [[ $APPVEYOR_REPO_BRANCH == $EXE_BRANCH && $PY == "venv3.7" ]]
then
pip3 install lxml natsort psutil PyQt5>=5.13.1 pyqtgraph>=0.11.0 h5py fastparquet scipy hdf5storage snappy cChardet==2.1.5 chardet --no-warn-script-location
pip3 install lxml natsort psutil PyQt5>=5.13.1 pyqtgraph==0.11.0 h5py fastparquet scipy hdf5storage snappy cChardet==2.1.5 chardet --no-warn-script-location
pip3 install .
pip3 install pyinstaller
pyinstaller asammdf_noconsole.spec
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _get_ext_modules():
"natsort",
"psutil",
"PyQt5>=5.13.1",
"pyqtgraph>=0.11.0",
"pyqtgraph==0.11.0",
"h5py",
"fastparquet",
"scipy",
Expand Down

0 comments on commit 7465baa

Please sign in to comment.