Skip to content

Commit

Permalink
Merge pull request #400 from Chia-Network/python-3.8
Browse files Browse the repository at this point in the history
bump CI to use python 3.8
  • Loading branch information
arvidn authored May 1, 2024
2 parents d6db84d + 7b66be0 commit c3bf2a9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-arm64-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ jobs:
export PATH=/opt/python/cp310-cp310/bin/:$PATH && \
export PATH=/opt/python/cp39-cp39/bin/:$PATH && \
export PATH=/opt/python/cp38-cp38/bin/:$PATH && \
export PATH=/opt/python/cp37-cp37m/bin/:$PATH && \
/opt/python/cp38-cp38/bin/python -m venv venv && \
if [ ! -f "activate" ]; then ln -s venv/bin/activate; fi && \
. ./activate && \
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python: [3.7]
python: [3.8]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
PY_VERSION=${{ matrix.python }}
PY_VERSION=${PY_VERSION/.} && \
echo "Python version with dot removed is $PY_VERSION" && \
if [ "$PY_VERSION" = "37" ]; \
if [ "$PY_VERSION" = "38" ]; \
then export SCND_VERSION="${PY_VERSION}m"; \
else export SCND_VERSION="$PY_VERSION"; fi && \
echo "Exporting path /opt/python/cp$PY_VERSION-cp$SCND_VERSION/bin" && \
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
python: [3.7]
python: [3.8]
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python: [3.7]
python: [3.8]
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion wheel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ path = "src/lib.rs"

[dependencies]
clvmr = { path = ".." }
pyo3 = { version = "=0.18.3", features = ["abi3-py37", "extension-module"] }
pyo3 = { version = "=0.18.3", features = ["abi3-py38", "extension-module"] }

[features]
openssl = ["clvmr/openssl"]

0 comments on commit c3bf2a9

Please sign in to comment.