Skip to content

Commit

Permalink
Add Python 3.9 to the list of supported versions
Browse files Browse the repository at this point in the history
  • Loading branch information
KostyaEsmukov committed Dec 20, 2020
1 parent 52d6e2b commit 7d75ea6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ python:
- "3.6"
- "3.7"
- "3.8"
- "3.9-dev"
- "3.9"
- "3.10-dev"
- "pypy3"

before_install:
Expand All @@ -28,7 +29,7 @@ script:

jobs:
allow_failures:
- python: "3.9-dev"
- python: "3.10-dev"

include:
- stage: lint
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Geocoder classes are located in `geopy.geocoders`_.
.. _Geocoders doc section: https://geopy.readthedocs.io/en/latest/#geocoders
.. _geopy.geocoders: https://github.com/geopy/geopy/tree/master/geopy/geocoders

geopy is tested against CPython (versions 3.5, 3.6, 3.7, 3.8)
geopy is tested against CPython (versions 3.5, 3.6, 3.7, 3.8, 3.9)
and PyPy3. geopy 1.x line also supported CPython 2.7, 3.4 and PyPy2.

© 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 3.5, 3.6, 3.7, 3.8)
geopy is tested against CPython (versions 3.5, 3.6, 3.7, 3.8, 3.9)
and PyPy3. geopy 1.x line also supported CPython 2.7, 3.4 and PyPy2.
"""

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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{35,36,37,38,39},pypy3,lint,rst
envlist=py{35,36,37,38,39,310},pypy3,lint,rst

[testenv]
extras =
Expand Down

0 comments on commit 7d75ea6

Please sign in to comment.