From f3557efcee23e6c1d51949822524b3aae3f1f0bd Mon Sep 17 00:00:00 2001 From: sethg Date: Thu, 23 Jan 2025 17:40:17 +0100 Subject: [PATCH 1/3] Use build for building packages --- README.md | 4 ++-- requirements-dev.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1b513c2a..aafed168 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 + python -m build twine upload dist/* ``` diff --git a/requirements-dev.txt b/requirements-dev.txt index 628f4358..146d3a7f 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -9,3 +9,4 @@ twine wheel coverage coveralls +build \ No newline at end of file From a55fab7c3661c28b0fef15103e9013b175e68b33 Mon Sep 17 00:00:00 2001 From: Seth G Date: Fri, 31 Jan 2025 00:01:37 +0100 Subject: [PATCH 2/3] Use python3 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aafed168..ecbdd52a 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,7 @@ Releasing git push --tags # update on PyPI (must be a maintainer) rm -fr build dist *.egg-info - python -m build + python3 -m build twine upload dist/* ``` From 5f5aa928b39f4805adeb3e82dfcf835718ce7789 Mon Sep 17 00:00:00 2001 From: geographika Date: Sun, 2 Feb 2025 09:45:25 +0100 Subject: [PATCH 3/3] Remove wheel as replaced with build --- requirements-dev.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 146d3a7f..318d435a 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -6,7 +6,6 @@ pytest-socket Pillow tox twine -wheel coverage coveralls build \ No newline at end of file