We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a91905d commit 68e581fCopy full SHA for 68e581f
.travis.yml
@@ -4,7 +4,7 @@ install: "make"
4
# command to run tests
5
script:
6
- |
7
- if [[ "$TRAVIS_PYTHON_VERSION" != "2.6" ]] ; then make test-readme; fi
+ make test-readme
8
- make ci
9
cache: pip
10
jobs:
@@ -14,11 +14,6 @@ jobs:
14
- make test-readme
15
16
python: '2.7'
17
- - stage: test
18
- script:
19
- - make test-readme
20
- - make ci
21
- python: '3.4'
22
- stage: test
23
24
HISTORY.md
@@ -8,6 +8,18 @@ dev
- \[Short description of non-trivial change.\]
11
+2.22.0 (2019-05-15)
12
+-------------------
13
+
+**Dependencies**
+- Requests now supports urllib3 v1.25.2.
+ (note: 1.25.0 and 1.25.1 are incompatible)
+**Deprecations**
+- Requests has officially stopped support for Python 3.4.
2.21.0 (2018-12-10)
-------------------
25
setup.py
@@ -79,7 +79,7 @@ def run_tests(self):
79
package_data={'': ['LICENSE', 'NOTICE'], 'requests': ['*.pem']},
80
package_dir={'requests': 'requests'},
81
include_package_data=True,
82
- python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
+ python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
83
install_requires=requires,
84
license=about['__license__'],
85
zip_safe=False,
@@ -92,7 +92,6 @@ def run_tests(self):
92
'Programming Language :: Python :: 2',
93
'Programming Language :: Python :: 2.7',
94
'Programming Language :: Python :: 3',
95
- 'Programming Language :: Python :: 3.4',
96
'Programming Language :: Python :: 3.5',
97
'Programming Language :: Python :: 3.6',
98
'Programming Language :: Python :: 3.7',
0 commit comments