Skip to content

Commit

Permalink
bump python versions (#4572)
Browse files Browse the repository at this point in the history
here's a somewhat science experiment to see if we can move to pypy 3.10 and
python 3.12.

As far as I can tell, we don't need (or at least, we don't) pass mypy's
--python-version flag any more, so I dropped that from the list of places
to update.

We keep 3.9 for now since RHEL9/Debian 11.

Signed-off-by: Tycho Andersen <tycho@tycho.pizza>
  • Loading branch information
tych0 committed Nov 14, 2023
1 parent 87f419d commit a0cd99b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ jobs:
# If you change one of these, be sure to update:
# - /tox.ini:[gh-actions]
# - /setup.cfg:[mypy]
# - /libqtile/scripts/check.py mypy argument
# If adding new python versions, consider also updating
# python version in .readthedocs.yaml
python-version: [pypy-3.9, 3.9, '3.10', '3.11']
python-version: [pypy-3.10, 3.9, '3.10', '3.11', '3.12']
backend: ['x11', 'wayland']
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ skipsdist=True
minversion = 4.0.12
envlist =
# Python environments with specific backend
py{py3,39,310,311}-{x11,wayland}
py{py3,39,310,311,312}-{x11,wayland}
docs,
packaging,
# For running pytest locally
Expand Down Expand Up @@ -120,7 +120,7 @@ commands =

[gh-actions]
python =
pypy-3.9: pypy3
pypy-3.10: pypy3
3.9: py39
3.10: py310
3.11: py311, packaging
Expand Down

0 comments on commit a0cd99b

Please sign in to comment.