Skip to content

Commit

Permalink
remove support to python3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
carlos-rian-qd committed Aug 22, 2024
1 parent 5b284b5 commit da69c34
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ on:
env:
PKG_CONFIG_ALLOW_CROSS: 1
PY_SQLX_VERSION: 0.0.1 # change when the run "release - check package version"
PYTHON_VERSIONS: "3.8 3.9 3.10 3.11 3.12"

jobs:
rust-test:
Expand Down Expand Up @@ -94,13 +95,13 @@ jobs:

- os: windows
ls: dir
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: ${{ env.PYTHON_VERSIONS }}

- os: windows
ls: dir
target: i686
python-architecture: x86
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: ${{ env.PYTHON_VERSIONS }}

# depends from libz, not working on windows correctly.
#- os: windows
Expand All @@ -110,7 +111,7 @@ jobs:

- os: macos
target: aarch64
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: ${{ env.PYTHON_VERSIONS }}

- os: ubuntu
platform: linux
Expand All @@ -123,7 +124,7 @@ jobs:
- os: ubuntu
platform: linux
target: armv7
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: ${{ env.PYTHON_VERSIONS }}
# musllinux
- os: ubuntu
platform: linux
Expand All @@ -138,12 +139,12 @@ jobs:
- os: ubuntu
platform: linux
target: ppc64le
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: ${{ env.PYTHON_VERSIONS }}

- os: ubuntu
platform: linux
target: s390x
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: ${{ env.PYTHON_VERSIONS }}

exclude:
# Optimized PGO builds for x86_64 manylinux and windows follow a different matrix,
Expand Down Expand Up @@ -187,7 +188,7 @@ jobs:
args: >
--release
--out dist
--interpreter ${{ matrix.interpreter || '3.7 3.8 3.9 3.10 3.11 3.12' }} ${{ matrix.extra-build-args }}
--interpreter ${{ matrix.interpreter || '3.8 3.9 3.10 3.11 3.12' }} ${{ matrix.extra-build-args }}
rust-toolchain: stable
sccache: true
docker-options: -e CI
Expand All @@ -209,7 +210,7 @@ jobs:
os: [ubuntu, windows]
target: [x86_64]
manylinux: [auto]
interpreter: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
interpreter: ["3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- os: ubuntu
platform: linux
Expand Down

0 comments on commit da69c34

Please sign in to comment.