Skip to content

Commit be479c7

Browse files
committed
soft-deprecate python 3.3 and 3.4
1 parent 3dd1d15 commit be479c7

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@ language: python
22
matrix:
33
include:
44
- python: '2.7'
5-
- python: '3.4'
65
- python: '3.5'
76
- python: '3.6'
87
- python: pypy
98
- python: pypy3.5
109
- python: 3.7
1110
dist: xenial
1211
sudo: true
12+
- python: 3.8
13+
dist: xenial
14+
sudo: true
1315
install:
1416
- pip install six requests
1517
- pip install -r requirements-tests.txt

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ EasyPost is the simple shipping API. You can sign up for an account at <https://
88
Requirements
99
------------
1010

11-
* [Python](https://www.python.org) 2.7 or 3.3+ (or corresponding [PyPy](https://pypy.org) versions).
11+
* [Python](https://www.python.org) 2.7 or 3.3+ (or corresponding [PyPy](https://pypy.org) versions). Note that we only test on Python 2.7 and 3.5+; we strongly recommend against using 3.3.x or 3.4.x as they are no longer supported by many libraries.
1212
* [requests](http://docs.python-requests.org/en/latest/) (if not on Google App Engine)
1313
* [six](https://pythonhosted.org/six/)
1414

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,10 @@
4444
"Environment :: Web Environment",
4545
"Programming Language :: Python",
4646
"Programming Language :: Python :: 2.7",
47-
"Programming Language :: Python :: 3.3",
48-
"Programming Language :: Python :: 3.4",
4947
"Programming Language :: Python :: 3.5",
5048
"Programming Language :: Python :: 3.6",
5149
"Programming Language :: Python :: 3.7",
50+
"Programming Language :: Python :: 3.8",
5251
"Intended Audience :: Developers",
5352
"Operating System :: OS Independent",
5453
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)