Skip to content

Commit 43f1505

Browse files
authored
Merge pull request pypa#254 from pypa/requests-version-restrictions
Do not use broken dependencies
2 parents d77d661 + 5884111 commit 43f1505

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

docs/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
Changelog
55
=========
66

7+
* :release:`1.9.1 <2017-05-27>`
8+
9+
* Blacklist known bad versions of Requests. See also :bug:`253`
10+
711
* :release:`1.9.0 <2017-05-22>`
812

913
* Twine will now resolve passwords using the

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ignore =
99
[metadata]
1010
requires-dist =
1111
tqdm >= 4.11
12-
requests >= 2.5.0
12+
requests >= 2.5.0, != 2.15, != 2.16
1313
requests-toolbelt >= 0.8.0
1414
pkginfo >= 1.0
1515
setuptools >= 0.7.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
install_requires = [
2222
"tqdm >= 4.11",
2323
"pkginfo >= 1.0",
24-
"requests >= 2.5.0",
24+
"requests >= 2.5.0, != 2.15, != 2.16",
2525
"requests-toolbelt >= 0.8.0",
2626
"setuptools >= 0.7.0",
2727
]

twine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__summary__ = "Collection of utilities for interacting with PyPI"
2323
__uri__ = "https://github.com/pypa/twine"
2424

25-
__version__ = "1.9.0"
25+
__version__ = "1.9.1"
2626

2727
__author__ = "Donald Stufft and individual contributors"
2828
__email__ = "donald@stufft.io"

0 commit comments

Comments
 (0)