-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #143 from pycompression/furthersimplifybuild
Do not use autotools for unix build
- Loading branch information
Showing
3 changed files
with
16 additions
and
12 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 |
---|---|---|
|
@@ -61,7 +61,7 @@ jobs: | |
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11-dev" | ||
- "3.11" | ||
- "pypy-3.7" | ||
- "pypy-3.8" | ||
- "pypy-3.9" | ||
|
@@ -87,7 +87,7 @@ jobs: | |
- name: Install build dependencies (Macos) | ||
# Install yasm because nasm does not work when building wheels. | ||
# Probably because of nasm-filter.sh not filtering all flags that can not be used. | ||
run: brew install nasm automake autoconf | ||
run: brew install nasm | ||
if: runner.os == 'macOS' | ||
- name: Set MSVC developer prompt | ||
uses: ilammy/[email protected] | ||
|
@@ -107,10 +107,6 @@ jobs: | |
matrix: | ||
python_version: | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
|
@@ -198,7 +194,7 @@ jobs: | |
- name: Install cibuildwheel twine wheel | ||
run: python -m pip install cibuildwheel twine wheel | ||
- name: Install build dependencies (Macos) | ||
run: brew install nasm automake autoconf | ||
run: brew install nasm | ||
if: runner.os == 'macOS' | ||
- name: Set MSVC developer prompt | ||
uses: ilammy/[email protected] | ||
|
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
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