Skip to content

Commit 4ccdcf6

Browse files
committed
Remove Python <3.10
All EOL
1 parent c1fdda3 commit 4ccdcf6

File tree

2 files changed

+4
-29
lines changed

2 files changed

+4
-29
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- uses: actions/setup-python@v5
8080
name: Install Python
8181
with:
82-
python-version: '3.9'
82+
python-version: '3.10'
8383

8484
- name: Install cibuildwheel
8585
run: |
@@ -121,7 +121,7 @@ jobs:
121121
# https://github.com/pypa/manylinux/issues/899
122122
CIBW_SKIP: "pp*-manylinux*"
123123
CIBW_ARCHS: "${{ matrix.arch }}"
124-
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8"
124+
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10"
125125
# Install dependencies
126126
CIBW_BEFORE_BUILD_LINUX: bash -x .github/library_builders.sh
127127
CIBW_BEFORE_BUILD_MACOS: bash -x .github/library_builders.sh

.travis.yml

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: python
22
python:
3-
- "3.9"
3+
- "3.10"
44

55
branches:
66
only:
@@ -10,7 +10,7 @@ env:
1010
global:
1111
- OPENPMD_GIT_REF="0.16.1"
1212

13-
- CIBW_PROJECT_REQUIRES_PYTHON=">=3.9"
13+
- CIBW_PROJECT_REQUIRES_PYTHON=">=3.10"
1414
# Install dependencies on Linux and OSX
1515
- CIBW_BEFORE_BUILD="bash -x .github/library_builders.sh"
1616
# for the openPMD-api build, CMake shall search for
@@ -24,11 +24,6 @@ jobs:
2424
# perform a linux ARMv8 build
2525
# note: takes >50min, so we need to split
2626
# +manylinux
27-
- services: docker
28-
arch: arm64
29-
dist: focal
30-
env:
31-
- CIBW_BUILD="cp39-manylinux_aarch64"
3227
- services: docker
3328
arch: arm64
3429
dist: focal
@@ -49,17 +44,7 @@ jobs:
4944
dist: focal
5045
env:
5146
- CIBW_BUILD="pp310-manylinux_aarch64"
52-
- services: docker
53-
arch: arm64
54-
dist: focal
55-
env:
56-
- CIBW_BUILD="pp39-manylinux_aarch64"
5747
# +musllinux
58-
- services: docker
59-
arch: arm64
60-
dist: focal
61-
env:
62-
- CIBW_BUILD="cp38-musllinux_aarch64 cp39-musllinux_aarch64"
6348
- services: docker
6449
arch: arm64
6550
dist: focal
@@ -77,11 +62,6 @@ jobs:
7762
- CIBW_BUILD="cp314-musllinux_aarch64"
7863

7964
# perform a linux PPC64LE build
80-
- services: docker
81-
arch: ppc64le
82-
dist: focal
83-
env:
84-
- CIBW_BUILD="cp39-manylinux_ppc64le"
8565
- services: docker
8666
arch: ppc64le
8767
dist: focal
@@ -107,11 +87,6 @@ jobs:
10787
dist: focal
10888
env:
10989
- CIBW_BUILD="cp314-manylinux_ppc64le"
110-
- services: docker
111-
arch: ppc64le
112-
dist: focal
113-
env:
114-
- CIBW_BUILD="cp39-musllinux_ppc64le"
11590
- services: docker
11691
arch: ppc64le
11792
dist: focal

0 commit comments

Comments
 (0)