Skip to content
Snippets Groups Projects
Commit 26482ced authored by Ellis Percival's avatar Ellis Percival
Browse files

Use module syntax

parent 282dfbeb
Branches
Tags
No related merge requests found
......@@ -37,9 +37,9 @@ jobs:
- run: make black
if: matrix.python-version != '2.7'
- run: pip install build
- run: build --wheel --outdir dist/ .
- run: python -m build --wheel --outdir dist/ .
if: matrix.python-version == '2.7'
- run: build --sdist --wheel --outdir dist/ .
- run: python -m build --sdist --wheel --outdir dist/ .
if: matrix.python-version == '3.6'
- uses: pypa/gh-action-pypi-publish@master
with:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment