Skip to content

Commit 80c3ae3

Browse files
committed
new release and python 3.11
1 parent 14561a9 commit 80c3ae3

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

.appveyor.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
branches:
22
except:
33
- master
4-
- udfa
54
- /v\d+\.\d+\.\d+/
65

76
environment:

.github/workflows/linux.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ jobs:
3232
pip3 install --upgrade pip &&
3333
pip3 install Cython &&
3434
pip3 install -r requirements.txt
35-
#CIBW_BUILD: "cp37-manylinux* cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux*"
36-
CIBW_BUILD: "cp311-manylinux*"
35+
CIBW_BUILD: "cp37-manylinux* cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux*"
3736
CIBW_SKIP: "*-manylinux_i686"
3837
CIBW_ARCHS_LINUX: "x86_64"
3938
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"

.github/workflows/linux_arm.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ jobs:
3737
pip3 install --upgrade pip &&
3838
pip3 install Cython &&
3939
pip3 install -r requirements.txt
40-
#CIBW_BUILD: "cp37-manylinux* cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux*"
41-
CIBW_BUILD: "cp311-manylinux*"
40+
CIBW_BUILD: "cp37-manylinux* cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux*"
4241
CIBW_SKIP: "*-manylinux_i686"
4342
CIBW_ARCHS_LINUX: "aarch64"
4443
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ def get_extension(module_name, src_name, current_os):
9898
"Programming Language :: Python :: 3.8",
9999
"Programming Language :: Python :: 3.9",
100100
"Programming Language :: Python :: 3.10",
101+
"Programming Language :: Python :: 3.11",
101102
"Topic :: Scientific/Engineering"],
102103
python_requires=">=3.7",
103104
install_requires=["numpy>=1.20"],

upload_release_wheels.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import argparse
66

77
min_py3 = 7
8-
max_py3 = 10
8+
max_py3 = 11
99

1010

1111
def download_file(url, folder_name):

0 commit comments

Comments
 (0)