Skip to content

Commit

Permalink
Merge pull request #444 from pmorissette/tkp/depl
Browse files Browse the repository at this point in the history
Small deployment fixes
  • Loading branch information
timkpaine authored Jun 24, 2024
2 parents 43983f6 + 28a1301 commit 5e7ea60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ concurrency:
jobs:
build:
runs-on: ${{ matrix.os }}
environment: dev

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.11]

steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand All @@ -48,7 +48,7 @@ jobs:
run: make dist

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.11.2
run: python -m pip install cibuildwheel==2.16.5

- name: Build wheels
run: python -m cibuildwheel --output-dir dist
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ on:
jobs:
build:
runs-on: ${{ matrix.os }}
environment: dev

strategy:
matrix:
os:
Expand Down Expand Up @@ -86,7 +84,7 @@ jobs:
python -m pip install -U wheel twine setuptools
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.11.2
run: python -m pip install cibuildwheel==2.16.5

- name: Python Wheel Steps (Linux - cibuildwheel)
run: python -m cibuildwheel --output-dir dist
Expand Down

0 comments on commit 5e7ea60

Please sign in to comment.