summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2023-03-22 11:42:59 -0400
committerGitHub <noreply@github.com>2023-03-22 11:42:59 -0400
commitb81bf17ef4928039bebd43c4d5426c6ba87e1076 (patch)
treeb74246120b5caeeccaf67fcab2d92115ae5139fa /.github/workflows
parent4a7b9352d677ae89d4dc89c243148dafac130957 (diff)
downloadpython-markdown-b81bf17ef4928039bebd43c4d5426c6ba87e1076.tar.gz
Switch from setup.py to pyproject.toml (#1324)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/deploy.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index fca5318..7cf84cf 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -17,10 +17,10 @@ jobs:
python-version: 3.7
- name: Install dependencies
run: |
- python -m pip install --upgrade pip setuptools wheel
+ python -m pip install --upgrade pip setuptools wheel build
- name: Build
run: |
- python setup.py bdist_wheel sdist --formats gztar
+ python -m build
- name: Publish
if: success()
uses: pypa/gh-action-pypi-publish@v1.1.0