mirror of
https://github.com/drewcassidy/quicktex.git
synced 2024-09-13 06:37:34 +00:00
Fix environment variables..?
This commit is contained in:
parent
22cc5f6148
commit
463956b63b
11
.github/workflows/python-package.yml
vendored
11
.github/workflows/python-package.yml
vendored
@ -54,13 +54,7 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
needs: test
|
needs: test
|
||||||
if: github.event_name == 'push'
|
if: github.event_name == 'push'
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
env:
|
|
||||||
MACOSX_DEPLOYMENT_TARGET: 10.15
|
|
||||||
CIBW_BUILD: { cp,pp }{ 37,38,39 }-*
|
|
||||||
CIBW_SKIP: "*-win32 *-manylinux_i686"
|
|
||||||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -76,6 +70,11 @@ jobs:
|
|||||||
|
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
uses: joerick/cibuildwheel@v1.11.0
|
uses: joerick/cibuildwheel@v1.11.0
|
||||||
|
env:
|
||||||
|
MACOSX_DEPLOYMENT_TARGET: "10.15"
|
||||||
|
CIBW_BUILD: "{ cp,pp }{ 37,38,39 }-*"
|
||||||
|
CIBW_SKIP: "*-win32 *-manylinux_i686"
|
||||||
|
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
|
||||||
|
|
||||||
- name: Upload wheel as artifact
|
- name: Upload wheel as artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
Loading…
Reference in New Issue
Block a user