Skip to content

Commit 730d380

Browse files
committed
Added support for python 3.13 (closes #37)
1 parent 8994fcc commit 730d380

File tree

7 files changed

+31
-9
lines changed

7 files changed

+31
-9
lines changed

.github/workflows/actions.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ ubuntu-latest, macos-latest ]
10-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.10']
10+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.10']
1111
tarantool: ['1.10', '2', '3']
1212
exclude:
1313
- os: macos-latest
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install Tarantool ${{ matrix.tarantool }} on Ubuntu
3434
if: matrix.os == 'ubuntu-latest'
3535
run: |
36-
curl -L https://tarantool.io/nTmSHOX/release/${{ matrix.tarantool }}/installer.sh | bash
36+
curl -L https://tarantool.io/release/${{ matrix.tarantool }}/installer.sh | bash
3737
sudo apt-get -y install tarantool
3838
3939
- name: Install Tarantool ${{ matrix.tarantool }} on MacOS
@@ -78,7 +78,7 @@ jobs:
7878
- name: Build wheels
7979
run: python -m cibuildwheel --output-dir wheelhouse
8080
env:
81-
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* pp310-*"
81+
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* pp310-*"
8282

8383
- uses: actions/upload-artifact@v4
8484
with:

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## v2.4.0
4+
**New features**
5+
* Added support for Python 3.13 [#37](https://github.com/igorcoding/asynctnt/issues/37)
6+
7+
**Other changes**
8+
* Upgraded Cython to 3.0.11
9+
310
## v2.3.0
411
**New features:**
512
* Added support for [interval types](https://www.tarantool.io/en/doc/latest/reference/reference_lua/datetime/interval_object/) [#30](https://github.com/igorcoding/asynctnt/issues/30)

asynctnt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
TarantoolTuple,
1919
)
2020

21-
__version__ = "2.3.0"
21+
__version__ = "2.4.0"

asynctnt/iproto/tupleobj/tupleobj.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ ttuple_dealloc(AtntTupleObject *o)
7272

7373
Py_CLEAR(o->metadata);
7474

75-
Py_TRASHCAN_SAFE_BEGIN(o)
75+
CPy_TRASHCAN_BEGIN(o, ttuple_dealloc)
7676
if (len > 0) {
7777
i = len;
7878
while (--i >= 0) {
@@ -91,7 +91,7 @@ ttuple_dealloc(AtntTupleObject *o)
9191
}
9292
Py_TYPE(o)->tp_free((PyObject *)o);
9393
done:
94-
Py_TRASHCAN_SAFE_END(o)
94+
CPy_TRASHCAN_END(o)
9595
}
9696

9797

asynctnt/iproto/tupleobj/tupleobj.h

+15
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@
88
extern "C" {
99
#endif
1010

11+
#if defined(PYPY_VERSION)
12+
# define CPy_TRASHCAN_BEGIN(op, dealloc)
13+
# define CPy_TRASHCAN_END(op)
14+
#else
15+
16+
#if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 8
17+
# define CPy_TRASHCAN_BEGIN(op, dealloc) Py_TRASHCAN_BEGIN(op, dealloc)
18+
# define CPy_TRASHCAN_END(op) Py_TRASHCAN_END
19+
#else
20+
# define CPy_TRASHCAN_BEGIN(op, dealloc) Py_TRASHCAN_SAFE_BEGIN(op)
21+
# define CPy_TRASHCAN_END(op) Py_TRASHCAN_SAFE_END(op)
22+
#endif
23+
24+
#endif
25+
1126
/* Largest ttuple to save on free list */
1227
#define AtntTuple_MAXSAVESIZE 20
1328

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ test = [
4646
'coverage[toml]',
4747
'pytz',
4848
'python-dateutil',
49-
"Cython==3.0.7", # for coverage
49+
"Cython==3.0.11", # for coverage
5050
]
5151

5252
docs = [
@@ -63,7 +63,7 @@ requires = [
6363
"setuptools>=60",
6464
"wheel",
6565

66-
"Cython==3.0.7",
66+
"Cython==3.0.11",
6767
]
6868
build-backend = "setuptools.build_meta"
6969

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def find_version():
1212
return re.match(r"""__version__\s*=\s*(['"])([^'"]+)\1""", line).group(2)
1313

1414

15-
CYTHON_VERSION = "3.0.7"
15+
CYTHON_VERSION = "3.0.11"
1616

1717

1818
class build_ext(setuptools_build_ext.build_ext):

0 commit comments

Comments
 (0)