Skip to content

Commit 68e581f

Browse files
committed
drop 3.4 support
1 parent a91905d commit 68e581f

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

.travis.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ install: "make"
44
# command to run tests
55
script:
66
- |
7-
if [[ "$TRAVIS_PYTHON_VERSION" != "2.6" ]] ; then make test-readme; fi
7+
make test-readme
88
- make ci
99
cache: pip
1010
jobs:
@@ -14,11 +14,6 @@ jobs:
1414
- make test-readme
1515
- make ci
1616
python: '2.7'
17-
- stage: test
18-
script:
19-
- make test-readme
20-
- make ci
21-
python: '3.4'
2217
- stage: test
2318
script:
2419
- make test-readme

HISTORY.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ dev
88

99
- \[Short description of non-trivial change.\]
1010

11+
2.22.0 (2019-05-15)
12+
-------------------
13+
14+
**Dependencies**
15+
16+
- Requests now supports urllib3 v1.25.2.
17+
(note: 1.25.0 and 1.25.1 are incompatible)
18+
19+
**Deprecations**
20+
21+
- Requests has officially stopped support for Python 3.4.
22+
1123
2.21.0 (2018-12-10)
1224
-------------------
1325

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def run_tests(self):
7979
package_data={'': ['LICENSE', 'NOTICE'], 'requests': ['*.pem']},
8080
package_dir={'requests': 'requests'},
8181
include_package_data=True,
82-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
82+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
8383
install_requires=requires,
8484
license=about['__license__'],
8585
zip_safe=False,
@@ -92,7 +92,6 @@ def run_tests(self):
9292
'Programming Language :: Python :: 2',
9393
'Programming Language :: Python :: 2.7',
9494
'Programming Language :: Python :: 3',
95-
'Programming Language :: Python :: 3.4',
9695
'Programming Language :: Python :: 3.5',
9796
'Programming Language :: Python :: 3.6',
9897
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
 (0)