Skip to content

Commit 2828592

Browse files
authored
Add support for Python 3.13 (#119)
1 parent cf53455 commit 2828592

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/test.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,18 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313
steps:
1414
- name: Set up the repository
1515
uses: actions/checkout@v3
1616
with:
1717
submodules: recursive
1818
fetch-depth: 0
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v3
20+
uses: actions/setup-python@v5.1.1
2121
with:
2222
python-version: ${{ matrix.python-version }}
23+
allow-prereleases: true
2324
- name: Install dependencies
2425
run: |
2526
pip install --upgrade pip

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
package_data={'pyroaring': ['py.typed', '__init__.pyi']},
8787
packages=['pyroaring'],
8888
version=VERSION,
89-
description='Fast and lightweight set for unsigned 32 bits integers.',
89+
description='Library for handling efficiently sorted integer sets.',
9090
long_description=long_description,
9191
setup_requires=['cython'],
9292
url='https://github.com/Ezibenroc/PyRoaringBitMap',
@@ -104,5 +104,6 @@
104104
'Programming Language :: Python :: 3.10',
105105
'Programming Language :: Python :: 3.11',
106106
'Programming Language :: Python :: 3.12',
107+
'Programming Language :: Python :: 3.13',
107108
],
108109
)

0 commit comments

Comments
 (0)