From 182dfc8677026ea32ba69e627a97516646a2e856 Mon Sep 17 00:00:00 2001 From: Seth G Date: Sun, 2 Feb 2025 14:00:39 +0100 Subject: [PATCH] Use build library for packaging (#969) * Use build for building packages * Use python3 * Remove wheel as replaced with build --- README.md | 4 ++-- requirements-dev.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b513c2a..ecbdd52a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ numerous OGC Web Service interfaces. ## Installation -The easiest way to install pywis-pubsub is via the Python [pip](https://pip.pypa.io) +The easiest way to install OWSLib is via the Python [pip](https://pip.pypa.io) utility: ```bash @@ -156,7 +156,7 @@ Releasing git push --tags # update on PyPI (must be a maintainer) rm -fr build dist *.egg-info - python3 setup.py sdist bdist_wheel --universal + python3 -m build twine upload dist/* ``` diff --git a/requirements-dev.txt b/requirements-dev.txt index 628f4358..318d435a 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -6,6 +6,6 @@ pytest-socket Pillow tox twine -wheel coverage coveralls +build \ No newline at end of file