Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI to python 3.13 #403

Merged
merged 1 commit into from
Dec 23, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: "python ${{ matrix.python-version }}"
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
Expand Down
26 changes: 13 additions & 13 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
minversion = 1.8
envlist =
py39,
py310,
py311,
py312,
py313,
packaging
isolated_build = True

Expand All @@ -26,7 +26,7 @@ deps =
mypy
bowler
# CI has libxcommon-dev 1.4.0 so we need to match here
xkbcommon < 1.5.0
xkbcommon < 1.1
pywayland == 0.4.17
dbus-fast
PyGObject
Expand All @@ -36,12 +36,12 @@ deps =
iwlib
psutil
pulsectl-asyncio
xcffib >= 1.4.0
cairocffi >= 1.6.0
wheel
# pywayland has to be installed before pywlroots
commands =
pip install --force-reinstall --no-binary :all: cffi
pip install pywlroots==0.17.0
pip install xcffib>=1.4.0 wheel
pip install cairocffi>=1.6.0
pip install --no-build-isolation pywlroots==0.17.0
pip install --no-build-isolation --config-setting backend=wayland git+https://github.com/qtile/qtile.git
; pip install -e git+https://github.com/qtile/qtile.git#egg=qtile
pip install .
Expand Down Expand Up @@ -75,17 +75,17 @@ deps =
setuptools >= 40.5.0
xcffib >= 0.10.1
# CI has libxkbcommon 1.4.0
xkbcommon < 1.5.0
xkbcommon < 1.1
pywayland == 0.4.17
dbus_fast
requests
pint
stravalib <= 1.1.0
xcffib >= 1.4.0
cairocffi >= 1.6.0
wheel
commands =
pip install --force-reinstall --no-binary :all: cffi
pip install pywlroots==0.17.0
pip install xcffib>=1.4.0 wheel
pip install cairocffi>=1.6.0
pip install --no-build-isolation pywlroots==0.17.0
pip install --no-build-isolation --config-setting backend=wayland git+https://github.com/qtile/qtile.git
pip install .

Expand All @@ -96,7 +96,7 @@ commands =

[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311, packaging
3.11: py311
3.12: py312
3.13: py313, packaging
Loading