Skip to content

Commit 4113c71

Browse files
authored
Update Python 3.13 compatibility (#199)
Fixes #186 Updates CI to build cp313 wheels. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/redis/hiredis-py/issues/186?shareId=XXXX-XXXX-XXXX-XXXX).
1 parent c1eefbd commit 4113c71

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/REUSABLE-wheeler.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
platforms: all
3838

3939
- name: Build wheels
40-
uses: pypa/cibuildwheel@v2.19.2
40+
uses: pypa/cibuildwheel@v2.21.3
4141
env:
4242
# configure cibuildwheel to build native archs ('auto'), and some
4343
# emulated ones

.github/workflows/integration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
max-parallel: 15
2727
matrix:
28-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9']
28+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']
2929
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
3030
fail-fast: false
3131
env:

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
* Implement pack_command that serializes redis-py command to the RESP bytes object.
22
* Implement garbage collection support in Reader (#162)
33
* Python 3.12
4+
* Python 3.13 compatibility
45

56
### 2.1.1 (2023-10-01)
67

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def get_libraries():
8383
'Programming Language :: Python :: 3.10',
8484
'Programming Language :: Python :: 3.11',
8585
'Programming Language :: Python :: 3.12',
86+
'Programming Language :: Python :: 3.13',
8687
'Programming Language :: Python :: Implementation :: CPython',
8788
'Topic :: Software Development',
8889
],

0 commit comments

Comments
 (0)