Skip to content

Commit

Permalink
Update CI to python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
elParaguayo committed Dec 23, 2024
1 parent a4de746 commit bc56bb5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
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
14 changes: 7 additions & 7 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 @@ -25,9 +25,6 @@ deps =
xcffib >= 0.10.1
mypy
bowler
# CI has libxcommon-dev 1.4.0 so we need to match here
xkbcommon < 1.5.0
pywayland == 0.4.17
dbus-fast
PyGObject
requests
Expand All @@ -38,6 +35,9 @@ deps =
pulsectl-asyncio
# pywayland has to be installed before pywlroots
commands =
# CI has libxcommon-dev 1.4.0 so we need to match here
pip install xkbcommon<1.1
pip install pywayland==0.4.17
pip install --force-reinstall --no-binary :all: cffi
pip install pywlroots==0.17.0
pip install xcffib>=1.4.0 wheel
Expand Down Expand Up @@ -75,7 +75,7 @@ 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
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

0 comments on commit bc56bb5

Please sign in to comment.