Skip to content

Commit c2085fc

Browse files
authored
Merge pull request #250 from danielvlla/enable-wheels-py311
Enables build for python 3.11
2 parents e641ac7 + 2a9ed2b commit c2085fc

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

.appveyor.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ environment:
1616
python_version: 3.10.6
1717
- python: 310-x64
1818
python_version: 3.10.6
19+
- python: 311
20+
python_version: 3.11.2
21+
- python: 311-x64
22+
python_version: 3.11.2
1923

2024
install:
2125
- ps: |

.github/workflows/macosx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: macos-latest
66
strategy:
77
matrix:
8-
python: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10"]
8+
python: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
99
steps:
1010
- uses: actions/checkout@v3
1111
- name: Setup Python

.github/workflows/manylinux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-abi: [cp36-cp36m, cp37-cp37m, cp38-cp38, cp39-cp39, cp310-cp310]
8+
python-abi: [cp36-cp36m, cp37-cp37m, cp38-cp38, cp39-cp39, cp310-cp310, cp311-cp311]
99
image:
1010
- manylinux2010_x86_64
1111
- manylinux_2_24_x86_64
1212
- musllinux_1_1_x86_64
1313
exclude:
1414
- image: manylinux2010_x86_64
15-
python-abi: cp310-cp310
15+
python-abi: cp311-cp311
1616
- image: manylinux2010_i686
17-
python-abi: cp310-cp310
17+
python-abi: cp311-cp311
1818
container: quay.io/pypa/${{ matrix.image }}
1919
steps:
2020
- uses: actions/checkout@v1

.github/workflows/opensuse-tumbleweed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
container: opensuse/tumbleweed
77
strategy:
88
matrix:
9-
python-version: ["3.8", "3.9", "3.10"]
9+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1010
steps:
1111
- uses: actions/checkout@v1
1212
- name: Install build dependencies

.github/workflows/sdist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v3
8-
- name: Set up Python 3.10
8+
- name: Set up Python 3.11
99
uses: actions/setup-python@v4
1010
with:
11-
python-version: "3.10"
11+
python-version: "3.11"
1212
- name: Install build dependencies
1313
run: |
1414
pip install --upgrade pip setuptools wheel

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ matrix:
1616
- python: 3.9
1717
dist: xenial
1818
sudo: required
19+
- python: 3.11
20+
dist: xenial
21+
sudo: required
1922
env:
2023
global:
2124
- CFLAGS=-coverage

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,7 @@ def prepare_static_build_linux(self):
533533
'Programming Language :: Python :: 3.7',
534534
'Programming Language :: Python :: 3.8',
535535
'Programming Language :: Python :: 3.9',
536+
'Programming Language :: Python :: 3.11',
536537
'Topic :: Text Processing :: Markup :: XML',
537538
'Typing :: Typed',
538539
],

0 commit comments

Comments
 (0)