From 26482ced0d9b9bc716509d40143ebaaaaf09153c Mon Sep 17 00:00:00 2001 From: Ellis Percival <flyte@failcode.co.uk> Date: Mon, 18 Jan 2021 20:32:50 +0000 Subject: [PATCH] Use module syntax --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 33deb11..9b292e9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: -- GitLab