Skip to content

Commit 551e8cd

Browse files
committed
Version 2.2.1
1 parent f321cd8 commit 551e8cd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish Python Package
1+
name: Publish
22

33
on:
44
release:
@@ -30,5 +30,5 @@ jobs:
3030
- name: Publish package
3131
run: |
3232
poetry env use system
33-
poetry config pypi-token.pypi secrets.PYPI_TOKEN
34-
poetry publish
33+
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
34+
poetry publish --skip-existing

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# mapservice-clientlib
22

3-
![Published](https://github.com/consbio/mapservice-clientlib/actions/workflows/publish.yml/badge.svg)
3+
[![Published](https://github.com/consbio/mapservice-clientlib/actions/workflows/publish.yml/badge.svg)](https://pypi.org/project/mapservice-clientlib/)
44
[![Coverage Status](https://coveralls.io/repos/github/consbio/mapservice-clientlib/badge.svg?branch=main)](https://coveralls.io/github/consbio/mapservice-clientlib?branch=main)
55

66
A library to make web service calls to map service REST APIs easier. Currently supported:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mapservice-clientlib"
3-
version = "2.2.0"
3+
version = "2.2.1"
44
description = "Library to query mapservices including ArcGIS, THREDDS, WMS and ScienceBase"
55
authors = ["dharvey-consbio <[email protected]>"]
66
keywords = ["arcgis", "thredds", "ncwms", "wms", "sciencebase", "geospatial", "gis", "mapservice", "map service", "clients", "mapservice_clientlib"]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def run(self):
2828
long_description=long_description,
2929
long_description_content_type="text/markdown",
3030
keywords="arcgis,thredds,ncwms,wms,sciencebase,geospatial,gis,mapservice,map service,clients,mapservice_clientlib",
31-
version="2.2.0",
31+
version="2.2.1",
3232
packages=[
3333
"clients", "clients.query", "clients.utils"
3434
],

0 commit comments

Comments
 (0)