Skip to content
This repository has been archived by the owner on Dec 8, 2024. It is now read-only.

Use newer Ubuntu #523

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
11 changes: 3 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,9 @@ jobs:
strategy:
matrix:
PEXT_BUILD_PORTABLE: [0, 1]
# Operative systems: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04]
# The Ubuntu version 22.04 has problems with Linux script to deploy plugin conda.
OPERATIVE_SYSTEM: [ubuntu-18.04]
# Python versions: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
# Python 3.6 has problems importing the requirement pyqt5==5.15.7.
PYTHON_VERSION: ["3.11"]
OPERATIVE_SYSTEM: [ubuntu-20.04]
PYTHON_VERSION: ["3.12"]
fail-fast: false
name: "${{ matrix.OPERATIVE_SYSTEM }} Python-${{ matrix.PYTHON_VERSION }} Portable-${{ matrix.PEXT_BUILD_PORTABLE }}"
runs-on: ${{ matrix.OPERATIVE_SYSTEM }}
Expand Down Expand Up @@ -54,9 +51,7 @@ jobs:
PEXT_BUILD_PORTABLE: [0]
# Operative systems: [macos-10.15, macos-11, macos-12]
OPERATIVE_SYSTEM: [macos-latest]
# Python versions: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
# Python 3.6 has problems importing the requirement pyqt5==5.15.7.
PYTHON_VERSION: ["3.11"]
PYTHON_VERSION: ["3.12"]
fail-fast: false
name: "${{ matrix.OPERATIVE_SYSTEM }} Python-${{ matrix.PYTHON_VERSION }} Portable-${{ matrix.PEXT_BUILD_PORTABLE }}"
runs-on: ${{ matrix.OPERATIVE_SYSTEM }}
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ psutil==5.9.4
pynput==1.7.6
pyqt5==5.15.9
requests==2.28.2
setuptools==68.2.2
watchdog==2.2.1
PyAutoGUI==0.9.53; sys.platform == 'darwin'
PyOpenGL==3.1.6; sys.platform == 'linux'
Loading