]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Use 'python -m build' to build wheel and source distributions (#2701)
authorMike Taves <mwtoews@gmail.com>
Thu, 16 Dec 2021 03:35:01 +0000 (16:35 +1300)
committerGitHub <noreply@github.com>
Thu, 16 Dec 2021 03:35:01 +0000 (19:35 -0800)
.github/workflows/pypi_upload.yml

index 201d94fd85e931ce5e71cc9f38d1b5402e5f269b..0921b624c45eaa7696e0784553778d69630e2c23 100644 (file)
@@ -15,14 +15,14 @@ jobs:
       - name: Set up Python
         uses: actions/setup-python@v2
 
-      - name: Install latest pip, setuptools, twine + wheel
+      - name: Install latest pip, build, twine
         run: |
-          python -m pip install --upgrade pip setuptools twine wheel
+          python -m pip install --upgrade --disable-pip-version-check pip
+          python -m pip install --upgrade build twine
 
-      - name: Build wheels
+      - name: Build wheel and source distributions
         run: |
-          python setup.py bdist_wheel
-          python setup.py sdist
+          python -m build
 
       - name: Upload to PyPI via Twine
         env: