Skip to content

Commit

Permalink
Bump Python 3.12 dependencies' version
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam authored Oct 18, 2023
1 parent 8b8d261 commit 645654b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
fail-fast: false
# Ruff is version and platform sensible
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12-dev"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout ${{ github.repository }}/${{ github.ref }}
uses: actions/checkout@v3
Expand All @@ -63,10 +63,10 @@ jobs:
steps:
- name: Checkout ${{ github.repository }}/${{ github.ref }}
uses: actions/checkout@v3
- name: Set up Python 3.12-dev
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12-dev"
python-version: "3.12"
- run: pip install add-trailing-comma
- name: Analysing the code with add-trailing-comma
run: add-trailing-comma $(git ls-files '**.py*')
Expand All @@ -76,7 +76,7 @@ jobs:
fail-fast: false
# Pyright is version and platform sensible
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12-dev"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout ${{ github.repository }}/${{ github.ref }}
uses: actions/checkout@v3
Expand All @@ -98,7 +98,7 @@ jobs:
fail-fast: false
# Only the Python version we plan on shipping matters.
matrix:
python-version: ["3.11", "3.12-dev"]
python-version: ["3.11", "3.12"]
steps:
- name: Checkout ${{ github.repository }}/${{ github.ref }}
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions scripts/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ certifi
ImageHash>=4.3.1 # Contains type information + setup as package not module
git+https://github.com/boppreh/keyboard.git#egg=keyboard # Fix install on macos and linux-ci https://github.com/boppreh/keyboard/pull/568
numpy>=1.26 # Python 3.12 support
opencv-python-headless>=4.8.1.78 ; python_version < "3.12" # Typing fixes
opencv-python-headless>=4.8.1.78 ; python_version < "3.12" # Typing fixes
# September 18th dev snapshot
https://download.qt.io/snapshots/ci/pyside/dev/a53379153abe1fc3b1ac5625714c6002510c6d73/split_wheels/PySide6_Essentials-6.6.0a1.dev1694513817-cp37-abi3-win_amd64.whl#egg=pyside6-essentials; python_version >= "3.12.0"
https://download.qt.io/snapshots/ci/pyside/dev/a53379153abe1fc3b1ac5625714c6002510c6d73/split_wheels/shiboken6-6.6.0a1.dev1694513817-cp37-abi3-win_amd64.whl#shiboken6 ; python_version >= "3.12.0"
packaging
Pillow>=10.0 # Python 3.12 support
psutil # TODO: Bump to 5.9.6 when released for Python 3.12 fixes
psutil>=5.9.6 # Python 3.12 fixes
PyAutoGUI
PyWinCtl>=0.0.42 # py.typed
PySide6-Essentials>=6.5.1 # fixes incomplete tuple return types https://bugreports.qt.io/browse/PYSIDE-2285
Expand Down

0 comments on commit 645654b

Please sign in to comment.