Bas Couwenberg pushed to branch upstream at Debian GIS Project / geolinks
Commits: 7a35d12c by Bas Couwenberg at 2023-09-08T06:27:36+02:00 New upstream version 0.2.3 - - - - - 4 changed files: - MANIFEST.in - README.md - debian/changelog - geolinks/__init__.py Changes: ===================================== MANIFEST.in ===================================== @@ -1,2 +1,3 @@ include README.md include LICENSE.md +include requirements.txt ===================================== README.md ===================================== @@ -28,13 +28,13 @@ cd my-env . bin/activate git clone https://github.com/geopython/geolinks.git cd geolinks -python setup.py build -python setup.py install +python3 setup.py build +python3 setup.py install ``` via pip: ```bash -pip install geolinks +pip3 install geolinks ``` ## Running @@ -63,10 +63,10 @@ geolinks link sniff 'http://host/wms?service=WMS' ```bash # via setuptools -python setup.py test +python3 setup.py test # manually cd tests -python run_tests.py +python3 run_tests.py ``` ## Development @@ -77,7 +77,7 @@ Same as installing a package. Use a virtualenv. Also install developer requirements: ```bash -pip install -r requirements-dev.txt +pip3 install -r requirements-dev.txt ``` ## Releasing @@ -92,7 +92,7 @@ git tag -a x.y.z -m 'tagging release x.y.z' # push tag git push --tags rm -fr build dist *.egg-info -python setup.py sdist bdist_wheel --universal +python3 setup.py sdist bdist_wheel --universal twine upload dist/* ``` ===================================== debian/changelog ===================================== @@ -1,3 +1,9 @@ +geolinks (0.2.3) focal; urgency=medium + + * packaging fixes + + -- Tom Kralidis <[email protected]> Thu, 7 Sep 2023 19:11:34 +0000 + geolinks (0.2.2) focal; urgency=medium * packaging fixes ===================================== geolinks/__init__.py ===================================== @@ -35,7 +35,7 @@ import click LOGGER = logging.getLogger(__name__) -__version__ = '0.2.2' +__version__ = '0.2.3' def CLICK_OPTION_VERBOSITY(f): View it on GitLab: https://salsa.debian.org/debian-gis-team/geolinks/-/commit/7a35d12c05739ae0337bdbf95042884a7676ad53 -- View it on GitLab: https://salsa.debian.org/debian-gis-team/geolinks/-/commit/7a35d12c05739ae0337bdbf95042884a7676ad53 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
