Skip to content

Commit

Permalink
Use build library for packaging (#969)
Browse files Browse the repository at this point in the history
* Use build for building packages

* Use python3

* Remove wheel as replaced with build
  • Loading branch information
geographika authored Feb 2, 2025
1 parent 6c33330 commit 182dfc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/*
```

Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ pytest-socket
Pillow
tox
twine
wheel
coverage
coveralls
build

0 comments on commit 182dfc8

Please sign in to comment.