Skip to content

Commit

Permalink
Cancel-workflow to 0.9.1 - test Python 3.10 on Mac/Ubuntu (#303)
Browse files Browse the repository at this point in the history
* cancel-workflow to 0.9.1 - test Python 3.10

* Revert e73751e and change to single \ later
  • Loading branch information
hoffmang9 committed Jan 8, 2022
1 parent 435c199 commit 2a7c26e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-aarch64.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- name: Cancel previous runs on the same branch
if: ${{ github.ref != 'refs/heads/main' }}
uses: styfle/cancel-workflow-action@0.7.0
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ github.token }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-m1-wheel.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- name: Cancel previous runs on the same branch
if: ${{ github.ref != 'refs/heads/main' }}
uses: styfle/cancel-workflow-action@0.7.0
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ github.token }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yaml
Expand Up @@ -18,12 +18,12 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
python: ['3.7', '3.8', '3.9']
python: ['3.7', '3.8', '3.9', '3.10']

steps:
- name: Cancel previous runs on the same branch
if: ${{ github.ref != 'refs/heads/main' }}
uses: styfle/cancel-workflow-action@0.7.0
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ github.token }}

Expand Down Expand Up @@ -69,10 +69,10 @@ jobs:
- name: Test pure python implementation
run: |
python python-impl/impl-test.py
- name: Install emsdk
uses: mymindstorm/setup-emsdk@v9

- name: Test javascript bindings
run: |
emcc -v
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wheels.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- name: Cancel previous runs on the same branch
if: ${{ github.ref != 'refs/heads/main' }}
uses: styfle/cancel-workflow-action@0.7.0
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ github.token }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/relic-nightly.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- name: Cancel previous runs on the same branch
if: ${{ github.ref != 'refs/heads/main' }}
uses: styfle/cancel-workflow-action@0.7.0
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ github.token }}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -176,7 +176,7 @@ def build_extensions(self):
opts.append("-fvisibility=hidden")
elif ct == "msvc":
if sys.version_info < (3, 9):
ver_flag = '/DVERSION_INFO=\\"%s\\"'
ver_flag = '/DVERSION_INFO=\"%s\"'
else:
ver_flag = '-DVERSION_INFO="%s"'
opts.append(ver_flag % self.distribution.get_version())
Expand Down

0 comments on commit 2a7c26e

Please sign in to comment.