Skip to content

Commit

Permalink
Merge branch 'release/6.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
JN-Hernandez committed Apr 19, 2024
2 parents 032ac00 + f5f654b commit 196bc88
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
release:
name: release
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Checkout commit and fetch tag history
uses: actions/checkout@v2
Expand All @@ -25,10 +27,8 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish package
env:
TWINE_USERNAME: ${{ secrets.PYPI_AZAVEA_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_AZAVEA_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
- name: Build release package
run: python setup.py sdist bdist_wheel

- name: Upload release to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -235,3 +235,7 @@ v6.2.0, 2024-01-22
previously would provide an internal Loc_name field in the response which
is no longer supplied, which broke the API. Making that field optional in
our code fixes this.

v6.2.1, 2024-04-15
------------------
* Update PyPI publishing integration
4 changes: 2 additions & 2 deletions omgeo/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def test_geocode_esri_wgs_senado_mx(self):
"""
candidates = self.g_esri_wgs.get_candidates(self.pq['senado_mx'])
self.assertOneCandidate(candidates)
search_text = 'Paseo de la Reforma 135'
search_text = 'Paseo de La Reforma 135'
self.assertEqual(search_text in candidates[0].match_addr, True,
'"%s" not found in match_addr. Got "%s".'
% (search_text, candidates[0].match_addr))
Expand All @@ -192,7 +192,7 @@ def test_geocode_structured_esri_wgs_senado_mx(self):
"""
candidates = self.g_esri_wgs.get_candidates(self.pq['senado_mx_struct'])
self.assertOneCandidate(candidates)
search_text = 'Paseo de la Reforma 135'
search_text = 'Paseo de La Reforma 135'
self.assertEqual(search_text in candidates[0].match_addr, True,
'"%s" not found in match_addr. Got "%s".'
% (search_text, candidates[0].match_addr))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def read(fname):

setup(
name="python-omgeo",
version="6.2.1",
version="6.2.2",
description="Geocoding Library using ESRI, Google, Bing Maps, US Census, OpenStreetMap, Pelias, and MapQuest geocoders",
author="Azavea, Inc.",
author_email="[email protected]",
Expand Down

0 comments on commit 196bc88

Please sign in to comment.