Skip to content

Commit 3707596

Browse files
committed
remove py3.10
1 parent 65b5007 commit 3707596

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

.github/workflows/big_endian.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
- [
3232
"s390x (IBM Z Big Endian)",
3333
"s390x-linux-gnu",
34-
"s390x/ubuntu:22.04",
34+
"s390x/ubuntu:24.04",
3535
"s390x",
3636
]
3737
- [
3838
"s390x - baseline(Z13)",
3939
"s390x-linux-gnu",
40-
"s390x/ubuntu:22.04",
40+
"s390x/ubuntu:24.04",
4141
"s390x",
4242
]
4343
env:

.github/workflows/build_wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Build wheels
3434
env:
35-
CIBW_BUILD: "cp310-manylinux_x86_64 cp311-manylinux_x86_64 cp312-manylinux_x86_64 cp313-manylinux_x86_64 cp313t-manylinux_x86_64 cp314-manylinux_x86_64 cp314t-manylinux_x86_64"
35+
CIBW_BUILD: "cp311-manylinux_x86_64 cp312-manylinux_x86_64 cp313-manylinux_x86_64 cp313t-manylinux_x86_64 cp314-manylinux_x86_64 cp314t-manylinux_x86_64"
3636
CIBW_ENABLE: cpython-prerelease cpython-freethreading
3737
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
3838
CIBW_BUILD_VERBOSITY: "3"
@@ -97,7 +97,7 @@ jobs:
9797
9898
- name: Build wheels
9999
env:
100-
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-* cp314-* cp313t-* cp314t-*"
100+
CIBW_BUILD: "cp311-* cp312-* cp313-* cp314-* cp313t-* cp314t-*"
101101
CIBW_ENABLE: cpython-prerelease cpython-freethreading
102102
# CIBW_ARCHS_MACOS: ${{ matrix.os == 'macos-13' && 'x86_64' || 'arm64' }}
103103
CIBW_BUILD_VERBOSITY: "3"
@@ -159,9 +159,9 @@ jobs:
159159
160160
- name: Build wheels
161161
env:
162-
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-* cp314-* cp313t-* cp314t-*"
162+
CIBW_BUILD: "cp311-* cp312-* cp313-* cp314-* cp313t-* cp314t-*"
163163
CIBW_ENABLE: cpython-prerelease cpython-freethreading
164-
CIBW_SKIP: "pp* cp36-* cp37-* cp38-* cp39-*"
164+
CIBW_SKIP: "pp* cp36-* cp37-* cp38-* cp39-* cp310-*"
165165
CIBW_ARCHS_WINDOWS: ${{ matrix.architecture == 'x86' && 'x86' || 'AMD64' }}
166166
CIBW_BUILD_VERBOSITY: "3"
167167
DISTUTILS_USE_SDK: "1"

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Python
1717
uses: actions/setup-python@v3
1818
with:
19-
python-version: "3.10"
19+
python-version: "3.11"
2020
- name: Install build and test dependencies
2121
run: |
2222
python -m pip install -U pip build pytest unyt wheel meson ninja meson-python patchelf pandas

.github/workflows/typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: astral-sh/[email protected]
2626
with:
2727
activate-environment: true
28-
python-version: "3.10"
28+
python-version: "3.11"
2929

3030
- name: install
3131
working-directory: quaddtype

quaddtype/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@ authors = [{name = "Swayam Singh", email = "[email protected]"}]
1818
classifiers = [
1919
"Development Status :: 4 - Beta",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",
2423
"Programming Language :: Python :: 3.13",
2524
"Programming Language :: Python :: 3.14",
2625
"Programming Language :: Python :: Free Threading",
2726
"Typing :: Typed",
2827
]
29-
requires-python = ">=3.10.0"
28+
requires-python = ">=3.11.0"
3029
dependencies = [
3130
"numpy>=2.0"
3231
]

0 commit comments

Comments
 (0)