File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 30
30
31
31
- name : Install cibuildwheel
32
32
run : |
33
- python3 -m pip install cibuildwheel==2.19.1
33
+ python3 -m pip install cibuildwheel==2.22.0
34
34
35
35
- name : Overwrite for Linux 64
36
36
if : runner.os == 'Linux' && matrix.platform == 'x86_64'
Original file line number Diff line number Diff line change 10
10
CIBW_BEFORE_TEST : " pip install -r {project}/test-requirements.txt"
11
11
CIBW_BEFORE_BUILD_LINUX : " rm -rf ~/.pyxbld && rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux && yum install -y libffi-devel libev libev-devel openssl openssl-devel"
12
12
CIBW_ENVIRONMENT : " CASS_DRIVER_BUILD_CONCURRENCY=2 CFLAGS='-g0 -O3'"
13
- CIBW_SKIP : cp35* cp36* cp37* pp*i686 *musllinux*
13
+ CIBW_SKIP : cp37* pp*i686 *musllinux*
14
14
CIBW_MANYLINUX_X86_64_IMAGE : manylinux_2_28
15
15
CIBW_MANYLINUX_PYPY_X86_64_IMAGE : manylinux_2_28
16
16
CIBW_MANYLINUX_AARCH64_IMAGE : manylinux_2_28
59
59
60
60
- name : Install cibuildwheel
61
61
run : |
62
- python3 -m pip install cibuildwheel==2.16.2
62
+ python3 -m pip install cibuildwheel==2.22.0
63
63
64
64
- name : Install OpenSSL for Windows
65
65
if : runner.os == 'Windows'
@@ -106,8 +106,9 @@ jobs:
106
106
- name : Overwrite for MacOs
107
107
if : runner.os == 'MacOs' && matrix.platform == 'all'
108
108
run : |
109
- echo "CIBW_BUILD=cp38* cp39* cp310* cp311* cp312*" >> $GITHUB_ENV
109
+ echo "CIBW_BUILD=cp39* cp310* cp311* cp312* cp313 *" >> $GITHUB_ENV
110
110
echo "CIBW_BEFORE_TEST_MACOS=pip install -r {project}/test-requirements.txt pytest" >> $GITHUB_ENV
111
+ echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV
111
112
112
113
- name : Overwrite for MacOs PyPy
113
114
if : runner.os == 'MacOs' && matrix.platform == 'PyPy'
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Scylla Enterprise (2018.1.x+) using exclusively Cassandra's binary protocol and
13
13
.. image :: https://github.com/scylladb/python-driver/actions/workflows/integration-tests.yml/badge.svg?branch=master
14
14
:target: https://github.com/scylladb/python-driver/actions/workflows/integration-tests.yml?query=event%3Apush+branch%3Amaster
15
15
16
- The driver supports Python versions 3.6 -3.11 .
16
+ The driver supports Python versions 3.7 -3.13 .
17
17
18
18
.. **Note:** This driver does not support big-endian systems.
19
19
Original file line number Diff line number Diff line change @@ -455,8 +455,14 @@ def run_setup(extensions):
455
455
'Natural Language :: English' ,
456
456
'Operating System :: OS Independent' ,
457
457
'Programming Language :: Python' ,
458
+ 'Programming Language :: Python :: 3' ,
458
459
'Programming Language :: Python :: 3.7' ,
459
460
'Programming Language :: Python :: 3.8' ,
461
+ 'Programming Language :: Python :: 3.9' ,
462
+ 'Programming Language :: Python :: 3.10' ,
463
+ 'Programming Language :: Python :: 3.11' ,
464
+ 'Programming Language :: Python :: 3.12' ,
465
+ 'Programming Language :: Python :: 3.13' ,
460
466
'Programming Language :: Python :: Implementation :: CPython' ,
461
467
'Programming Language :: Python :: Implementation :: PyPy' ,
462
468
'Topic :: Software Development :: Libraries :: Python Modules'
You can’t perform that action at this time.
0 commit comments