-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try py36 compatibility with setup.cfg
- Loading branch information
Showing
2 changed files
with
11 additions
and
7 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 |
---|---|---|
|
@@ -40,7 +40,7 @@ jobs: | |
strategy: | ||
matrix: | ||
python-version: | ||
# FIXME: add this back - "3.6" | ||
- "3.6" | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
|
@@ -50,9 +50,9 @@ jobs: | |
include: | ||
- os: ubuntu-latest | ||
|
||
# # older versions need older OS | ||
# - python-version: "3.6" | ||
# os: ubuntu-20.04 | ||
# older versions need older OS | ||
- python-version: "3.6" | ||
os: ubuntu-20.04 | ||
|
||
- python-version: "3.7" | ||
os: ubuntu-22.04 | ||
|
@@ -204,8 +204,8 @@ jobs: | |
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
# Only build CPython 3.x targets | ||
CIBW_BUILD: "cp3*" | ||
# Only build CPython ABI3 targets | ||
CIBW_BUILD: "cp3*-abi3-*" | ||
# Ensure full C++17 availability on macOS builds | ||
MACOSX_DEPLOYMENT_TARGET: "10.13" | ||
# Signal setup.py to fail if binary build fails | ||
|
@@ -253,8 +253,8 @@ jobs: | |
run: python -m build --sdist | ||
|
||
- uses: actions/upload-artifact@v4 | ||
name: release-dist-sdist | ||
with: | ||
name: release-dist-sdist | ||
path: dist/*.tar.gz | ||
|
||
#------------------------------------------------------------------------------- | ||
|
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# This file is only required for Python3.6 build compatibility with pyproject.toml | ||
[metadata] | ||
name = systemrdl-compiler | ||
version = attr: src.systemrdl.__about__.__version__ |