Skip to content

Commit 329329c

Browse files
Added comment and update workflow
1 parent 04ef247 commit 329329c

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ jobs:
5757
- uses: actions/download-artifact@v2
5858
with:
5959
name: wheels
60+
- name: PYPI_API_TOKEN
61+
id: pypi_api
62+
run: echo "Using '${{ secrets.PYPI_API_TOKEN }}' as the MATURIN_PYPI_TOKEN"
6063
- name: Publish to PyPI
6164
uses: messense/maturin-action@v1
6265
env:

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,9 @@ crate-type = ["cdylib"]
1212
pyo3 = { version = "0.14", features = ["extension-module"] }
1313
pyo3-asyncio = { version = "0.14", features = ["tokio-runtime"] }
1414
fpm = { git = "https://github.com/FifthTry/fpm", rev = "b76522f0e08d50ae513e587cc98c1e0c353a0aba" }
15+
16+
# This is added to resolve
17+
# Error: "failed to run custom build command for `openssl-sys v0.9.72`"
18+
# for linux github workflow in CI.yml
19+
# Worflow link: https://github.com/FifthTry/ftd-py/runs/5696299223?check_suite_focus=true
1520
openssl = { version = "0.10", features = ["vendored"] }

0 commit comments

Comments
 (0)