Skip to content

Commit

Permalink
Add Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
KostyaEsmukov committed Jul 7, 2018
1 parent d93fb3c commit f476955
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
27 changes: 17 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "pypy"
- "pypy3"
sudo: false

matrix:
include:
- python: "2.7"
- python: "3.4"
- python: "3.5"
- python: "3.6"
- python: "3.7"
# See: https://github.com/travis-ci/travis-ci/issues/9815
dist: xenial
sudo: required
- python: "3.8-dev"
dist: xenial
sudo: required
- python: "pypy"
- python: "pypy3"
allow_failures:
- python: "3.7-dev"
- python: "3.8-dev"
install:
- travis_retry pip install -e ".[dev,timezone]"
script:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The various geocoder classes are located in `geopy.geocoders`_.
.. _GeocodeFarm: https://www.geocodefarm.com/
.. _geopy.geocoders: https://github.com/geopy/geopy/tree/master/geopy/geocoders

geopy is tested against CPython (versions 2.7, 3.4, 3.5, 3.6), PyPy, and
geopy is tested against CPython (versions 2.7, 3.4, 3.5, 3.6, 3.7), PyPy, and
PyPy3. geopy does not and will not support CPython 2.6.

© geopy contributors 2006-2018 (see AUTHORS) under the `MIT
Expand Down
2 changes: 1 addition & 1 deletion geopy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
addresses, cities, countries, and landmarks across the globe using third-party
geocoders and other data sources.
geopy is tested against CPython (versions 2.7, 3.4, 3.5, 3.6), PyPy, and
geopy is tested against CPython (versions 2.7, 3.4, 3.5, 3.6, 3.7), PyPy, and
PyPy3. geopy does not and will not support CPython 2.6.
"""

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py{27,34,35,36,37},pypy{,3},lint
envlist=py{27,34,35,36,37,38},pypy{,3},lint

[testenv]
extras =
Expand Down

0 comments on commit f476955

Please sign in to comment.