Skip to content

Commit dc4b10d

Browse files
committed
Merge branch 'master' of github.com:Nexmo/nexmo-python
2 parents 69b1d9a + 7b4bc64 commit dc4b10d

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ python:
44
- "3.4"
55
- "3.5"
66
- "3.6"
7-
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
7+
- "3.7"
8+
# Enable 3.8 without globally enabling sudo and dist: xenial for other build jobs
89
matrix:
910
include:
10-
- python: 3.7
11+
- python: 3.8
1112
dist: xenial
1213
sudo: true
1314

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -571,6 +571,10 @@ client.api_host('myapi.nexmo.com') # rewrite the value of api_host
571571
```
572572

573573
## Frequently Asked Questions
574+
### Dropping support for Python 2.7
575+
Back in 2014 when Guido van Rossum, Python's creator and principal author, made the announcement, January 1, 2020 seemed pretty far away. Python 2.7’s sunset has happened, after which there’ll be absolutely no more support from the core Python team. Many utilized projects pledge to drop Python 2 support in or before 2020. [(Official statement here)](https://www.python.org/doc/sunset-python-2/).
576+
577+
Just because 2.7 isn’t going to be maintained past 2020 doesn’t mean your applications or libraries suddenly stop working but as of this moment we won't give official support for upcoming releases. Please read the official ["Porting Python 2 Code to Python 3" guide](https://docs.python.org/3/howto/pyporting.html). Please also read the [Python 3 Statement Practicalities](https://python3statement.org/practicalities/) for advice on sunsetting your Python 2 code.
574578

575579
### Supported APIs
576580

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@
3232
"Programming Language :: Python :: 3.5",
3333
"Programming Language :: Python :: 3.6",
3434
"Programming Language :: Python :: 3.7",
35+
"Programming Language :: Python :: 3.8",
3536
],
3637
)

0 commit comments

Comments
 (0)