Skip to content

Commit

Permalink
CI: revert changes, bump to dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmgray committed Sep 7, 2023
1 parent a3f43dc commit b1ad8bf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'false'
sccache: 'true'
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -47,9 +47,9 @@ jobs:
run: |
set -e
ls dist/*
pip install cotengrust -U --find-links dist --force-reinstall
pip install cotengrust --find-links dist --force-reinstall
pip install -r requirements-tests.txt
pytest --verbose -x
pytest --verbose
- name: pytest
if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }}
uses: uraimo/[email protected]
Expand All @@ -65,7 +65,7 @@ jobs:
run: |
set -e
pip3 install cotengrust --find-links dist --force-reinstall
pytest --verbose -x
pytest --verbose
windows:
runs-on: windows-latest
Expand All @@ -83,7 +83,7 @@ jobs:
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'false'
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand All @@ -95,9 +95,9 @@ jobs:
run: |
set -e
ls dist/*
pip install cotengrust -U --find-links dist --force-reinstall
pip install cotengrust --find-links dist --force-reinstall
pip install -r requirements-tests.txt
pytest --verbose -x
pytest --verbose
macos:
runs-on: macos-latest
Expand All @@ -114,7 +114,7 @@ jobs:
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'false'
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand All @@ -126,9 +126,9 @@ jobs:
run: |
set -e
ls dist/*
pip install cotengrust -U --find-links dist --force-reinstall
pip install cotengrust --find-links dist --force-reinstall
pip install -r requirements-tests.txt
pytest --verbose -x
pytest --verbose
sdist:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cotengrust"
version = "0.1.1"
version = "0.1.1.dev0"
description = "Fast contraction ordering primitives for tensor networks."
requires-python = ">=3.8"
classifiers = [
Expand Down

0 comments on commit b1ad8bf

Please sign in to comment.