Skip to content

Commit

Permalink
chore(dependencies): update the dependencies of Rust and the latest p…
Browse files Browse the repository at this point in the history
…yo3 integration (#170)

* chore(dependencies): update the dependencies of Rust and the latest pyo3 integration

* chore(github_action): add more targets when building with Python

* chore(python): bump Python minimum version to 3.9
  • Loading branch information
fvaleye authored Jan 3, 2025
1 parent a435770 commit abee283
Show file tree
Hide file tree
Showing 9 changed files with 589 additions and 324 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9

- name: Install Rust
run: |
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9

- name: Install Rust
run: |
Expand All @@ -59,7 +59,7 @@ jobs:
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Enable manylinux Python targets
run: echo "/opt/python/cp38-cp38m/bin" >> $GITHUB_PATH
run: echo "/opt/python/cp39-cp39m/bin" >> $GITHUB_PATH

- name: Install metadata guardian
run: |
Expand All @@ -83,7 +83,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
fail-fast: false
matrix:
os:
- macOS-10.15
- macOS-11
- macOS-12
- macOS-13
- windows-2019
include:
- target: x86_64-apple-darwin
os: macOS-10.15
os: macOS-12
- target: aarch64-apple-darwin
os: macOS-11
os: macOS-13
- target: x86_64-pc-windows-msvc
os: windows-2019
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Enable manylinux Python targets
run: echo "/opt/python/cp37-cp37m/bin" >> $GITHUB_PATH
run: echo "/opt/python/cp39-cp39m/bin" >> $GITHUB_PATH

- name: Setup
run: make setup
Expand Down
Loading

0 comments on commit abee283

Please sign in to comment.