mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-09 14:08:08 -05:00
Pass through as input?
This commit is contained in:
12
.github/workflows/python_buildwheels.yml
vendored
12
.github/workflows/python_buildwheels.yml
vendored
@@ -76,8 +76,7 @@ jobs:
|
||||
os: ${{ matrix.os }}
|
||||
python-version: ${{ matrix.python-version }}
|
||||
arch: ${{ matrix.arch }}
|
||||
env:
|
||||
TESTPYPI_VERSION: "${{ needs.set-version.outputs.testpypiversion }}"
|
||||
TESTPYPI_VERSION: ${{ needs.set-version.outputs.testpypiversion }}
|
||||
|
||||
python_ubuntu_arm:
|
||||
needs: set-version
|
||||
@@ -93,8 +92,7 @@ jobs:
|
||||
os: ${{ matrix.os }}
|
||||
python-version: ${{ matrix.python-version }}
|
||||
arch: ${{ matrix.arch }}
|
||||
env:
|
||||
TESTPYPI_VERSION: "${{ needs.set-version.outputs.testpypiversion }}"
|
||||
TESTPYPI_VERSION: ${{ needs.set-version.outputs.testpypiversion }}
|
||||
|
||||
python_windows:
|
||||
needs: set-version
|
||||
@@ -113,8 +111,7 @@ jobs:
|
||||
os: ${{ matrix.os }}
|
||||
python-version: ${{ matrix.python-version }}
|
||||
arch: ${{ matrix.arch }}
|
||||
env:
|
||||
TESTPYPI_VERSION: "${{ needs.set-version.outputs.testpypiversion }}"
|
||||
TESTPYPI_VERSION: ${{ needs.set-version.outputs.testpypiversion }}
|
||||
|
||||
python_macos:
|
||||
needs: set-version
|
||||
@@ -133,8 +130,7 @@ jobs:
|
||||
os: ${{ matrix.os }}
|
||||
python-version: ${{ matrix.python-version }}
|
||||
arch: ${{ matrix.arch }}
|
||||
env:
|
||||
TESTPYPI_VERSION: "${{ needs.set-version.outputs.testpypiversion }}"
|
||||
TESTPYPI_VERSION: ${{ needs.set-version.outputs.testpypiversion }}
|
||||
|
||||
merge_wheels:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
5
.github/workflows/python_cibuildwheel.yml
vendored
5
.github/workflows/python_cibuildwheel.yml
vendored
@@ -12,6 +12,9 @@ on:
|
||||
arch:
|
||||
required: true
|
||||
type: string
|
||||
TESTPYPI_VERSION:
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
|
||||
@@ -40,7 +43,7 @@ jobs:
|
||||
if [[ "$GITHUB_REF" == *"refs/tags"* ]]; then
|
||||
python dev/extract_version.py --pypi --replace-setup-py
|
||||
else
|
||||
python dev/extract_version.py --replace-setup-py --version "${{ env.TESTPYPI_VERSION }}"
|
||||
python dev/extract_version.py --replace-setup-py --version "${{ inputs.TESTPYPI_VERSION }}"
|
||||
fi;
|
||||
|
||||
- name: Set up QEMU
|
||||
|
||||
Reference in New Issue
Block a user