Skip to content

Commit

Permalink
chore: update workflow and specific cmake version
Browse files Browse the repository at this point in the history
  • Loading branch information
GCS-ZHN committed Dec 27, 2023
1 parent 8e8e64f commit 92f24f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ jobs:
- name: "Build and test for Windows"
shell: powershell
run: |
pip install --upgrade pip;
pip install build ;
python -m pip install --upgrade pip;
pip install build "setuptools>=42" "scikit-build>=0.13" "cmake>=3.18,<=3.25.2" "ninja" "versioneer[toml]";
conda install -c anaconda zlib ;
python -m build --wheel;
python -m build --wheel --no-isolation;
Get-ChildItem -Path dist -Filter diamond4py*whl | ForEach-Object{ pip install "dist\$_" };
pushd test; python test.py; popd
Expand All @@ -128,7 +128,7 @@ jobs:

release:
needs: ["manylinux-build", "win-build"]
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"setuptools>=42",
"scikit-build>=0.13",
"cmake>=3.18",
"cmake>=3.18,<=3.25.2",
"ninja",
"versioneer[toml]"
]
Expand Down

0 comments on commit 92f24f8

Please sign in to comment.