forked from quantopian/zipline
-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
157e2bb
commit 04a948c
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest , windows-latest, macos-latest ] | ||
python-version: [ 38, 39, 310, 311 ] | ||
python: [ 38, 39, 310, 311 ] | ||
arch: [ auto64 ] | ||
|
||
steps: | ||
|
@@ -29,7 +29,7 @@ jobs: | |
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
python-version: ${{ matrix.python }} | ||
|
||
- name: Set Xcode version | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
|
@@ -45,7 +45,7 @@ jobs: | |
CIBW_BEFORE_ALL_MACOS: brew install ta-lib | ||
CIBW_ARCHS_LINUX: ${{ matrix.arch }} | ||
CIBW_ARCHS_MACOS: x86_64 arm64 | ||
CIBW_BUILD: "cp${{ matrix.python-version }}-*" | ||
CIBW_BUILD: "cp${{ matrix.python }}-*" | ||
CIBW_SKIP: "*-musllinux_*" | ||
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.15 | ||
|
||
|
@@ -58,7 +58,7 @@ jobs: | |
if: runner.os == 'Windows' | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: "cp${{ matrix.python-version }}-win_amd64" | ||
CIBW_BUILD: "cp${{ matrix.python }}-win_amd64" | ||
CIBW_TEST_SKIP: "cp311-win_amd64" | ||
CIBW_BEFORE_TEST_WINDOWS: > | ||
call "c:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64 && | ||
|