Skip to content

Commit ee1b1a9

Browse files
Merge pull request #348 from nyx-space/dependabot/cargo/pyo3-0.23.3
Update pyo3 requirement from 0.22.0 to 0.23.3
2 parents 2b15db8 + bb8ccc9 commit ee1b1a9

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/formal_verification.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ jobs:
2727
sed '17d' Cargo.toml > Cargo.toml.new
2828
mv Cargo.toml.new Cargo.toml
2929
30-
- name: Kani Rust Verifier
31-
uses: model-checking/kani-github-action@0.23
30+
# - name: Kani Rust Verifier
31+
# uses: model-checking/kani-github-action@0.23

.github/workflows/python.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ permissions:
2020

2121
jobs:
2222
linux:
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-22.04
2424
strategy:
2525
matrix:
2626
target: [x86_64, x86, aarch64, armv7, ppc64le]
27+
2728
steps:
2829
- uses: actions/checkout@v4
29-
- uses: actions/setup-python@v5
30+
- name: Setup Python on ${{ matrix.target }}
31+
uses: actions/setup-python@v5
3032
with:
31-
python-version: '3.11'
32-
check-latest: false
33-
allow-prereleases: false
33+
python-version: ">=3.9"
3434

35-
- name: Fix openssl regression
36-
run: cargo update openssl-src --precise 300.3.1+3.3.1
35+
# - name: Fix openssl regression
36+
# run: cargo update openssl-src --precise 300.3.1+3.3.1
3737

3838
- name: Build wheels
3939
uses: PyO3/maturin-action@v1

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/nyx-space/hifitime"
99
keywords = ["date", "time", "science", "leap-second", "no-std"]
1010
categories = ["date-and-time", "no-std"]
1111
readme = "README.md"
12-
license = "Apache-2.0"
12+
license = "MPL-2.0"
1313
exclude = ["*.tar.gz", "data/"]
1414
edition = "2021"
1515

@@ -20,7 +20,7 @@ name = "hifitime"
2020
[dependencies]
2121
serde = { version = "1.0.155", optional = true }
2222
serde_derive = { version = "1.0.155", optional = true }
23-
pyo3 = { version = "0.22.0", features = [
23+
pyo3 = { version = "0.23.3", features = [
2424
"extension-module",
2525
"multiple-pymethods",
2626
], optional = true }

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["maturin>=1.6,<1.7"]
2+
requires = ["maturin>=1.7,<1.8"]
33
build-backend = "maturin"
44

55
[tool.maturin]
@@ -8,7 +8,7 @@ features = ["python"]
88

99
[project]
1010
name = "hifitime"
11-
requires-python = ">=3.7"
11+
requires-python = ">=3.9"
1212
classifiers = [
1313
"Development Status :: 5 - Production/Stable",
1414
"Topic :: Scientific/Engineering :: Astronomy",

0 commit comments

Comments
 (0)