Skip to content

Commit

Permalink
Merge pull request #254 from pypa/requests-version-restrictions
Browse files Browse the repository at this point in the history
Do not use broken dependencies
  • Loading branch information
sigmavirus24 committed May 27, 2017
2 parents d77d661 + 5884111 commit 43f1505
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
Changelog
=========

* :release:`1.9.1 <2017-05-27>`

* Blacklist known bad versions of Requests. See also :bug:`253`

* :release:`1.9.0 <2017-05-22>`

* Twine will now resolve passwords using the
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ignore =
[metadata]
requires-dist =
tqdm >= 4.11
requests >= 2.5.0
requests >= 2.5.0, != 2.15, != 2.16
requests-toolbelt >= 0.8.0
pkginfo >= 1.0
setuptools >= 0.7.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
install_requires = [
"tqdm >= 4.11",
"pkginfo >= 1.0",
"requests >= 2.5.0",
"requests >= 2.5.0, != 2.15, != 2.16",
"requests-toolbelt >= 0.8.0",
"setuptools >= 0.7.0",
]
Expand Down
2 changes: 1 addition & 1 deletion twine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__summary__ = "Collection of utilities for interacting with PyPI"
__uri__ = "https://github.com/pypa/twine"

__version__ = "1.9.0"
__version__ = "1.9.1"

__author__ = "Donald Stufft and individual contributors"
__email__ = "donald@stufft.io"
Expand Down

0 comments on commit 43f1505

Please sign in to comment.