Compare commits

..

No commits in common. "f0994dd801fec9eda38424cbeacd644448033bba" and "e8a4d5eeed1fd5ef788a4bd362c92595b86691e9" have entirely different histories.

3 changed files with 7 additions and 7 deletions

View File

@ -180,7 +180,7 @@ unittest:
- job: set-version
artifacts: true
script:
- python3.12 -m venv venv
- python3 -m venv venv
- . venv/bin/activate
- pip3 install -U pip
- pip3 install -r ./full-requirements.txt
@ -198,7 +198,7 @@ test-pep8:
- job: unittest
script:
# Setup virtual env
- python3.12 -m venv venv
- python3 -m venv venv
- . venv/bin/activate
- pip3 install -U pip
- pip3 install -r ./requirements.txt
@ -276,7 +276,7 @@ build-developers-doc:
- ./build.sh
# Create html documentation
- cd ../../src
- python3.12 -m venv doc-venv
- python3 -m venv doc-venv
- . doc-venv/bin/activate
- pip3 install -U pip
- pip3 install -r ../full-requirements.txt
@ -326,13 +326,13 @@ build-linux:
- mkdir -p linux
- cd linux
# Setup virtual env
- python3.12 -m venv linux-venv
- python3 -m venv linux-venv
- . linux-venv/bin/activate
- pip3 install -U pip
- pip3 install -r ../requirements.txt
- pip3 install -U -r ../requirements.txt
# Run Pyinstaller
- pyinstaller -y $HIDDEN_IMPORTS --paths linux-venv/lib/python3.12/site-packages ../src/pamhyr.py
- pyinstaller -y $HIDDEN_IMPORTS --paths linux-venv/lib/python3.10/site-packages ../src/pamhyr.py
# Create directory
- mkdir -p pamhyr
- mkdir -p pamhyr/_internal

View File

@ -4,7 +4,7 @@ PyQt5-sip==12.18.0
PyQtWebEngine==5.15.6
QScintilla>=2.14.1
pyqtgraph>=0.12.1
matplotlib==3.8.3
matplotlib>=3.7.1, < 3.10.0
numpy>=1.24.2
colorama>=0.4.3
pyinstaller>=5.11.0

View File

@ -4,7 +4,7 @@ PyQt5-sip==12.18.0
#PyQtWebEngine==5.15.6
QScintilla>=2.14.1
pyqtgraph>=0.12.1
matplotlib==3.8.3
matplotlib==3.10.0
numpy>=1.24.2
colorama>=0.4.3
pyinstaller>=5.11.0