Skip to content

Commit 8f2ced5

Browse files
author
Nicolas Steinmetz
committed
fix: adjust python version to 3.12 instead of 3.11, adjust redis versions, add python 3.13
1 parent e085d1c commit 8f2ced5

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: set up python
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: '3.11'
21+
python-version: '3.12'
2222

2323
- run: pip install -r requirements/linting.txt -r requirements/pyproject.txt pre-commit
2424

@@ -35,7 +35,7 @@ jobs:
3535
- name: set up python
3636
uses: actions/setup-python@v5
3737
with:
38-
python-version: '3.11'
38+
python-version: '3.12'
3939

4040
- run: pip install -r requirements/docs.txt -r requirements/pyproject.txt
4141
- run: pip install .
@@ -54,17 +54,14 @@ jobs:
5454
fail-fast: false
5555
matrix:
5656
os: [ubuntu]
57-
python: ['3.9', '3.10', '3.11', '3.12']
58-
redis: ['5']
57+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
58+
redis: ['8.0']
5959
include:
60-
- python: '3.11'
61-
redis: '6'
60+
- python: '3.12'
61+
redis: '7.2'
6262
os: 'ubuntu'
63-
- python: '3.11'
64-
redis: '7'
65-
os: 'ubuntu'
66-
- python: '3.11'
67-
redis: '8'
63+
- python: '3.12'
64+
redis: '7.4'
6865
os: 'ubuntu'
6966
env:
7067
PYTHON: ${{ matrix.python }}
@@ -126,7 +123,7 @@ jobs:
126123
- name: set up python
127124
uses: actions/setup-python@v5
128125
with:
129-
python-version: '3.11'
126+
python-version: '3.12'
130127

131128
- name: install
132129
run: pip install -U build

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
'Programming Language :: Python :: 3.10',
2929
'Programming Language :: Python :: 3.11',
3030
'Programming Language :: Python :: 3.12',
31+
'Programming Language :: Python :: 3.13',
3132
'Topic :: Internet',
3233
'Topic :: Software Development :: Libraries :: Python Modules',
3334
'Topic :: System :: Clustering',

0 commit comments

Comments
 (0)