Skip to content
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
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ dist: xenial

matrix:
include:
- python: '2.7'
env: NOXSESSION="tests-2.7"
- python: '3.5'
env: NOXSESSION="tests-3.5"
- python: '3.6'
env: NOXSESSION="tests-3.6"
- python: '3.7'
env: NOXSESSION="tests-3.7"
sudo: required # required for Python 3.7 (github.com/travis-ci/travis-ci#9069)
- python: '2.7'
- python: '3.8'
env: NOXSESSION="tests-3.8"
- python: '3.6'
env: NOXSESSION="docs"

install:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
### Removed
### Changed
- Python 2 is no longer supported
- Removed place fields: `alt_id`, `id`, `reference`, and `scope`. Read more about this at https://developers.google.com/maps/deprecations.

## [v3.1.4]
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import nox

SUPPORTED_PY_VERSIONS = ["2.7", "3.5", "3.6", "3.7"]
SUPPORTED_PY_VERSIONS = ["3.5", "3.6", "3.7", "3.8"]


def _install_dev_packages(session):
Expand Down
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@
from setuptools import setup


if sys.version_info <= (2, 4):
error = "Requires Python Version 2.5 or above... exiting."
print >>sys.stderr, error
sys.exit(1)


requirements = ["requests>=2.20.0,<3.0"]

# use io.open until python2.7 support is dropped
Expand Down Expand Up @@ -38,10 +32,10 @@
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet",
],
)