Skip to content

Commit 05c5027

Browse files
committed
Adjust MSRV and brew install gettext
1 parent 36713ee commit 05c5027

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,9 @@ jobs:
4949
rust: [stable]
5050
python-version:
5151
[
52-
"3.7",
53-
"3.8",
5452
"3.9",
5553
"3.10",
5654
"3.11-dev",
57-
"pypy-3.7",
58-
"pypy-3.8",
5955
"pypy-3.9",
6056
]
6157
platform:
@@ -83,10 +79,6 @@ jobs:
8379
]
8480
exclude:
8581
# PyPy doesn't release 32-bit Windows builds any more
86-
- python-version: pypy-3.7
87-
platform: { os: "windows-latest", python-architecture: "x86" }
88-
- python-version: pypy-3.8
89-
platform: { os: "windows-latest", python-architecture: "x86" }
9082
- python-version: pypy-3.9
9183
platform: { os: "windows-latest", python-architecture: "x86" }
9284
include:
@@ -128,6 +120,12 @@ jobs:
128120
toolchain: ${{ matrix.rust }}
129121
target: ${{ matrix.platform.rust-target }}
130122

123+
- name: Install gettext (macOS)
124+
if: runner.os == 'macOS'
125+
run: |
126+
brew install gettext
127+
brew link --force gettext
128+
131129
# - if: matrix.platform.os == 'ubuntu-latest'
132130
# name: Prepare LD_LIBRARY_PATH (Ubuntu only)
133131
# run: echo LD_LIBRARY_PATH=${pythonLocation}/lib >> $GIHUB_ENV

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories = ["api-bindings", "development-tools::ffi"]
1515
license = "Apache-2.0"
1616
exclude = ["/.gitignore", "/codecov.yml", "/Makefile"]
1717
edition = "2021"
18-
rust-version = "1.63"
18+
rust-version = "1.70"
1919

2020
[workspace]
2121
members = ["pyo3-asyncio-macros"]

0 commit comments

Comments
 (0)