Skip to content

Commit

Permalink
new release and python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
stfbnc committed Oct 30, 2022
1 parent 14561a9 commit 80c3ae3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
branches:
except:
- master
- udfa
- /v\d+\.\d+\.\d+/

environment:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ jobs:
pip3 install --upgrade pip &&
pip3 install Cython &&
pip3 install -r requirements.txt
#CIBW_BUILD: "cp37-manylinux* cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux*"
CIBW_BUILD: "cp311-manylinux*"
CIBW_BUILD: "cp37-manylinux* cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux*"
CIBW_SKIP: "*-manylinux_i686"
CIBW_ARCHS_LINUX: "x86_64"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/linux_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ jobs:
pip3 install --upgrade pip &&
pip3 install Cython &&
pip3 install -r requirements.txt
#CIBW_BUILD: "cp37-manylinux* cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux*"
CIBW_BUILD: "cp311-manylinux*"
CIBW_BUILD: "cp37-manylinux* cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux*"
CIBW_SKIP: "*-manylinux_i686"
CIBW_ARCHS_LINUX: "aarch64"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ def get_extension(module_name, src_name, current_os):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering"],
python_requires=">=3.7",
install_requires=["numpy>=1.20"],
Expand Down
2 changes: 1 addition & 1 deletion upload_release_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import argparse

min_py3 = 7
max_py3 = 10
max_py3 = 11


def download_file(url, folder_name):
Expand Down

0 comments on commit 80c3ae3

Please sign in to comment.