Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cancel-workflow to 0.9.1 - test Python 3.10 on Mac/Ubuntu #303

Merged
merged 2 commits into from Jan 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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