Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replace geocoder with geopy #610

Merged
merged 5 commits into from
Jan 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ certifi = "==2018.10.15"
click = "~=7.1"
crate = "~=0.22"
flask = "~=1.1.0"
geocoder = "~=1.33"
geojson = "~=2.4"
geomet = "~=0.2"
gunicorn = "~=20.1"
Expand All @@ -24,9 +23,10 @@ objsize = "~=0.3"
redis = "~=3.5"
requests = ">=2.20"
rq = "~=1.8"
# run `pipenv install --dev` to get the packages below in your env
geopy = "~=2.2.0"

[dev-packages]
# run `pipenv install --dev` to get the packages below in your env
aiohttp = ">=3.7.4"
backoff = "~=1.1"
matplotlib = "~=3.3"
Expand Down
129 changes: 53 additions & 76 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### New features

- Removed subscription API (#493)
- Replaced geocoder with [geopy](https://geopy.readthedocs.io/en/stable/) (#610)

### Bug fixes

Expand Down
Loading