test python3.12

dev_dylan
Theophile Terraz 2026-03-25 09:57:46 +01:00
parent e8a4d5eeed
commit e3ffac9ce0
2 changed files with 6 additions and 6 deletions

View File

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

View File

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