Skip to content

Commit

Permalink
Adjust MSRV and brew install gettext
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Oct 19, 2024
1 parent 36713ee commit 05c5027
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,9 @@ jobs:
rust: [stable]
python-version:
[
"3.7",
"3.8",
"3.9",
"3.10",
"3.11-dev",
"pypy-3.7",
"pypy-3.8",
"pypy-3.9",
]
platform:
Expand Down Expand Up @@ -83,10 +79,6 @@ jobs:
]
exclude:
# PyPy doesn't release 32-bit Windows builds any more
- python-version: pypy-3.7
platform: { os: "windows-latest", python-architecture: "x86" }
- python-version: pypy-3.8
platform: { os: "windows-latest", python-architecture: "x86" }
- python-version: pypy-3.9
platform: { os: "windows-latest", python-architecture: "x86" }
include:
Expand Down Expand Up @@ -128,6 +120,12 @@ jobs:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.platform.rust-target }}

- name: Install gettext (macOS)
if: runner.os == 'macOS'
run: |
brew install gettext
brew link --force gettext
# - if: matrix.platform.os == 'ubuntu-latest'
# name: Prepare LD_LIBRARY_PATH (Ubuntu only)
# run: echo LD_LIBRARY_PATH=${pythonLocation}/lib >> $GIHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ categories = ["api-bindings", "development-tools::ffi"]
license = "Apache-2.0"
exclude = ["/.gitignore", "/codecov.yml", "/Makefile"]
edition = "2021"
rust-version = "1.63"
rust-version = "1.70"

[workspace]
members = ["pyo3-asyncio-macros"]
Expand Down

0 comments on commit 05c5027

Please sign in to comment.