Skip to content

Commit 6b4ac9b

Browse files
authored
Release 1.25.6 (urllib3#1693)
1 parent 9167b58 commit 6b4ac9b

File tree

8 files changed

+20
-7
lines changed

8 files changed

+20
-7
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ matrix:
4040
# Unit tests
4141
- python: 2.7
4242
env: NOX_SESSION=test-2.7
43+
- python: 3.4
44+
env: NOX_SESSION=test-3.4
4345
- python: 3.5
4446
env: NOX_SESSION=test-3.5
4547
- python: 3.6
@@ -65,6 +67,9 @@ matrix:
6567
- language: generic
6668
os: osx
6769
env: NOX_SESSION=test-2.7
70+
- language: generic
71+
os: osx
72+
env: NOX_SESSION=test-3.4
6873
- language: generic
6974
os: osx
7075
env: NOX_SESSION=test-3.5

CHANGES.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
Changes
22
=======
33

4-
dev (master)
5-
------------
4+
1.25.6 (2019-09-24)
5+
-------------------
66

7-
* Dropped Python 3.4 support. (Pull #1686)
7+
* Fix issue where tilde (``~``) characters were incorrectly
8+
percent-encoded in the path. (Pull #1692)
89

910

1011
1.25.5 (2019-09-19)

_travis/install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
2121
# Mac OS setup.
2222
case "${NOX_SESSION}" in
2323
test-2.7) MACPYTHON=2.7.16 ;;
24+
test-3.4) MACPYTHON=3.4.4 ;;
2425
test-3.5) MACPYTHON=3.5.4 ;; # last binary release
2526
test-3.6) MACPYTHON=3.6.8 ;; # last binary release
2627
test-3.7) MACPYTHON=3.7.4 ;;

appveyor.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ environment:
1212
PYTHON_ARCH: "64"
1313
NOX_SESSION: "test-2.7"
1414

15+
- PYTHON: "C:\\Python34-x64"
16+
PYTHON_VERSION: "3.4.x"
17+
PYTHON_ARCH: "64"
18+
NOX_SESSION: "test-3.4"
19+
1520
- PYTHON: "C:\\Python35-x64"
1621
PYTHON_VERSION: "3.5.x"
1722
PYTHON_ARCH: "64"

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def tests_impl(session, extras="socks,secure,brotli"):
3737
session.run("coverage", "report", "-m")
3838

3939

40-
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8", "pypy"])
40+
@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "pypy"])
4141
def test(session):
4242
tests_impl(session)
4343

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"Programming Language :: Python :: 2",
3838
"Programming Language :: Python :: 2.7",
3939
"Programming Language :: Python :: 3",
40+
"Programming Language :: Python :: 3.4",
4041
"Programming Language :: Python :: 3.5",
4142
"Programming Language :: Python :: 3.6",
4243
"Programming Language :: Python :: 3.7",
@@ -62,7 +63,7 @@
6263
],
6364
package_dir={"": "src"},
6465
requires=[],
65-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
66+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
6667
tests_require=[
6768
# These are a less-specific subset of dev-requirements.txt, for the
6869
# convenience of distro package maintainers.

src/urllib3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
__author__ = "Andrey Petrov ([email protected])"
2424
__license__ = "MIT"
25-
__version__ = "1.25.5"
25+
__version__ = "1.25.6"
2626

2727
__all__ = (
2828
"HTTPConnectionPool",

test/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def wrapper(*args, **kwargs):
106106

107107

108108
def notOpenSSL098(test):
109-
"""Skips this test for Python 3.5 macOS python.org distribution"""
109+
"""Skips this test for Python 3.4 and 3.5 macOS python.org distributions"""
110110

111111
@functools.wraps(test)
112112
def wrapper(*args, **kwargs):

0 commit comments

Comments
 (0)