Skip to content

Commit

Permalink
test package and wheel building using 'build'
Browse files Browse the repository at this point in the history
instead of using setup.py
  • Loading branch information
cwmeijer committed Aug 8, 2023
1 parent 77b099d commit 4f9b571
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Run unit tests
run: pytest -v
- name: Verify that we can build the package
run: python3 setup.py sdist bdist_wheel
run: python3 -m build

other_builds:
name: Build for (${{ matrix.python-version }}, ${{ matrix.os }})
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Run unit tests
run: pytest -v
- name: Verify that we can build the package
run: python3 setup.py sdist bdist_wheel
run: python3 -m build

lint:
name: Linting build
Expand Down

0 comments on commit 4f9b571

Please sign in to comment.