diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b4441e4..de4ab96 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: python-version: 3.8 - name: Install python-build and twine - run: python -m pip install build twine + run: python -m pip install build "twine>=3.3" - name: Build package run: python -m build --sdist --wheel . @@ -27,7 +27,7 @@ jobs: run: ls -l dist - name: Check long_description - run: python -m twine check dist/* + run: python -m twine check --strict dist/* - name: Test package run: |