Skip to content

Commit 4a56a6d

Browse files
authored
Merge branch 'master' into dependabot/cargo/light-curve/enumflags2-0.7.5
2 parents fea46aa + 504496d commit 4a56a6d

File tree

4 files changed

+21
-20
lines changed

4 files changed

+21
-20
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
interpreter: "*"
3030

3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
3333

3434
- name: Set up QEMU
3535
if: ${{ matrix.arch != 'auto' }}
@@ -52,7 +52,7 @@ jobs:
5252
CIBW_SKIP: "*-musllinux_i686 pp39-*" # rustup doesn't install i686-musl, pyO3<0.16 doesn't support pypy3.9
5353

5454
- name: Upload wheels as artifacts
55-
uses: actions/upload-artifact@v2
55+
uses: actions/upload-artifact@v3
5656
with:
5757
path: ./wheelhouse/*.whl
5858
if-no-files-found: error
@@ -66,7 +66,7 @@ jobs:
6666
working-directory: ./light-curve
6767

6868
steps:
69-
- uses: actions/checkout@v2
69+
- uses: actions/checkout@v3
7070

7171
- name: Setup Python
7272
uses: actions/setup-python@v3
@@ -78,7 +78,7 @@ jobs:
7878
run: maturin sdist
7979

8080
- name: Upload sdist as an artifact
81-
uses: actions/upload-artifact@v2
81+
uses: actions/upload-artifact@v3
8282
with:
8383
path: ./light-curve/target/wheels/*.tar.gz
8484
if-no-files-found: error
@@ -113,7 +113,7 @@ jobs:
113113
working-directory: light-curve-python
114114

115115
steps:
116-
- uses: actions/checkout@v2
116+
- uses: actions/checkout@v3
117117

118118
- name: Set up Python
119119
uses: actions/setup-python@v3

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
- Infrastructure: [cibuildweel](https://cibuildwheel.readthedocs.io/en/stable/) for package publishing
1717
- `enumflags2` 0.7.4 -> 0.7.5
18+
- `rayon` 1.5.1 -> 1.5.2
19+
- `pyo3` 0.15.1 -> 0.15.2
1820

1921
### Deprecated
2022

light-curve/Cargo.lock

Lines changed: 12 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

light-curve/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ num_cpus = "~1.13.0"
3939
num-traits = "~0.2"
4040
rand = "~0.8.5"
4141
rand_xoshiro = "~0.6.0"
42-
rayon = "~1.5.0"
42+
rayon = "~1.5.2"
4343
thiserror = "~1.0.24"
4444
unzip3 = "1.0.0"
4545

@@ -48,5 +48,5 @@ version = "0.4.1"
4848
default_features = false
4949

5050
[dependencies.pyo3]
51-
version = "~0.15.1"
51+
version = "~0.15.2"
5252
features = ["extension-module"]

0 commit comments

Comments
 (0)