Skip to content

Commit

Permalink
Remove PYTHONWARNINGS=error during build
Browse files Browse the repository at this point in the history
build uses pip to install dependencies, and pip raises a
deprecation warning (see pypa/pip#12243).
  • Loading branch information
henriquegemignani committed Sep 10, 2023
1 parent 21b11c8 commit e6f63a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: python -m pip install --upgrade build

- name: build
run: PYTHONWARNINGS=error python -m build
run: python -m build

- name: Store the packages
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit e6f63a5

Please sign in to comment.