mirror of
https://github.com/kennethreitz/requests3.git
synced 2026-06-05 15:00:20 +00:00
drop 3.4 support
This commit is contained in:
+1
-6
@@ -4,7 +4,7 @@ install: "make"
|
||||
# command to run tests
|
||||
script:
|
||||
- |
|
||||
if [[ "$TRAVIS_PYTHON_VERSION" != "2.6" ]] ; then make test-readme; fi
|
||||
make test-readme
|
||||
- make ci
|
||||
cache: pip
|
||||
jobs:
|
||||
@@ -14,11 +14,6 @@ jobs:
|
||||
- make test-readme
|
||||
- make ci
|
||||
python: '2.7'
|
||||
- stage: test
|
||||
script:
|
||||
- make test-readme
|
||||
- make ci
|
||||
python: '3.4'
|
||||
- stage: test
|
||||
script:
|
||||
- make test-readme
|
||||
|
||||
+12
@@ -8,6 +8,18 @@ dev
|
||||
|
||||
- \[Short description of non-trivial change.\]
|
||||
|
||||
2.22.0 (2019-05-15)
|
||||
-------------------
|
||||
|
||||
**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)
|
||||
-------------------
|
||||
|
||||
|
||||
@@ -79,7 +79,7 @@ setup(
|
||||
package_data={'': ['LICENSE', 'NOTICE'], 'requests': ['*.pem']},
|
||||
package_dir={'requests': 'requests'},
|
||||
include_package_data=True,
|
||||
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.*",
|
||||
install_requires=requires,
|
||||
license=about['__license__'],
|
||||
zip_safe=False,
|
||||
@@ -92,7 +92,6 @@ setup(
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
|
||||
Reference in New Issue
Block a user