Skip to content

Commit cfb45c7

Browse files
authored
Bump minimum Python version to 3.11 (#77)
* BUmp minimum Python version to 3.11 * Specify interpreters to build for * No pypy on windows
1 parent fd84569 commit cfb45c7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
working-directory: python
4343
target: ${{ matrix.platform.target }}
44-
args: --release --out dist --find-interpreter
44+
args: --release --out dist -i 3.11 -i 3.12 -i 3.13 -i pypy3.10
4545
sccache: 'true'
4646
manylinux: auto
4747
- name: Upload wheels
@@ -73,7 +73,7 @@ jobs:
7373
with:
7474
working-directory: python
7575
target: ${{ matrix.platform.target }}
76-
args: --release --out dist --find-interpreter
76+
args: --release --out dist -i 3.11 -i 3.12 -i 3.13 -i pypy3.10
7777
sccache: 'true'
7878
manylinux: musllinux_1_2
7979
- name: Upload wheels
@@ -102,7 +102,7 @@ jobs:
102102
with:
103103
working-directory: python
104104
target: ${{ matrix.platform.target }}
105-
args: --release --out dist --find-interpreter
105+
args: --release --out dist -i 3.11 -i 3.12 -i 3.13
106106
sccache: 'true'
107107
- name: Upload wheels
108108
uses: actions/upload-artifact@v4
@@ -129,7 +129,7 @@ jobs:
129129
with:
130130
working-directory: python
131131
target: ${{ matrix.platform.target }}
132-
args: --release --out dist --find-interpreter
132+
args: --release --out dist -i 3.11 -i 3.12 -i 3.13 -i pypy3.10
133133
sccache: 'true'
134134
- name: Upload wheels
135135
uses: actions/upload-artifact@v4

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "gribberish"
7-
requires-python = ">=3.9"
7+
requires-python = ">=3.11"
88
classifiers = [
99
"Programming Language :: Rust",
1010
"Programming Language :: Python :: Implementation :: CPython",

0 commit comments

Comments
 (0)