5757 with :
5858 poetry-version : 1.3.2
5959 - name : Install package deps
60- run : |
60+ run : |
6161 poetry install
62-
62+
6363 - name : Install rust toolchain
6464 uses : actions-rs/toolchain@v1
6565 with :
@@ -75,13 +75,13 @@ jobs:
7575 shell : bash
7676 env :
7777 DEVELOPER_DIR : /Applications/Xcode.app/Contents/Developer
78- MACOSX_DEPLOYMENT_TARGET : ' 10.9'
78+ MACOSX_DEPLOYMENT_TARGET : " 10.9"
7979 ARCHFLAGS : -arch x86_64 -arch arm64
8080 PYO3_CROSS_LIB_DIR : /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib
8181 run : poetry run python setup.py bdist_wheel && poetry install
8282
8383 - name : Build Python package
84- if : matrix.os != 'macos-latest'
84+ if : matrix.os != 'macos-latest'
8585 run : poetry run python setup.py bdist_wheel && poetry install
8686
8787 - name : pytest
@@ -108,13 +108,12 @@ jobs:
108108 fail-fast : false
109109 matrix :
110110 include :
111- - {tag: manylinux2014, arch: x86_64}
112- - {tag: manylinux2014, arch: i686}
113- - {tag: manylinux2014, arch: aarch64}
114- # TODO: figure out a way to renable this, for now it's far too slow
111+ - { tag: manylinux2014, arch: x86_64 }
112+ - { tag: manylinux2014, arch: i686 }
113+ # TODO: figure out a way to renable these, for now far too slow
115114 # to run in github actions (> 6hrs)
116115 # - {tag: manylinux2014, arch: ppc64le}
117-
116+ # - {tag: manylinux2014, arch: aarch64}
118117 runs-on : ubuntu-latest
119118 needs : lint
120119 steps :
@@ -159,10 +158,9 @@ jobs:
159158 publish :
160159 runs-on : ubuntu-latest
161160 needs : [manylinux-build, native-build, source-build]
162- steps :
163-
161+ steps :
164162 - uses : actions/download-artifact@v2
165- with :
163+ with :
166164 name : wheels
167165 path : dist/
168166
0 commit comments