__version__.py

This commit is contained in:
2017-05-25 20:07:38 -04:00
parent 64efd9cfe0
commit 14d6fa1472
4 changed files with 5 additions and 21 deletions
-16
View File
@@ -1,16 +0,0 @@
# -*- coding: utf-8 -*-
# .-. .-. .-. . . .-. .-. .-. .-.
# |( |- |.| | | |- `-. | `-.
# ' ' `-' `-`.`-' `-' `-' ' `-'
__title__ = 'requests'
__description__ = 'Python HTTP for Humans.'
__url__ = 'http://python-requests.org'
__version__ = '2.14.2'
__build__ = 0x021402
__author__ = 'Kenneth Reitz'
__author_email__ = 'me@kennethreitz.org'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2017 Kenneth Reitz'
__cake__ = u'✨ 🍰 ✨ Thanks for using my software. It means the world to me. --kennethreitz'
+3 -3
View File
@@ -40,9 +40,9 @@ is at <http://python-requests.org>.
:license: Apache 2.0, see LICENSE for more details.
"""
from .__about__ import __title__, __description__, __url__, __version__
from .__about__ import __build__, __author__, __author_email__, __license__
from .__about__ import __copyright__, __cake__
from .__version__ import __title__, __description__, __url__, __version__
from .__version__ import __build__, __author__, __author_email__, __license__
from .__version__ import __copyright__, __cake__
# Attempt to enable urllib3's SNI support, if possible
try:
+1 -1
View File
@@ -20,7 +20,7 @@ import socket
import struct
import warnings
from .__about__ import __version__
from .__version__ import __version__
from . import certs
# to_native_string is unused here, but imported here for backwards compatibility
from ._internal_utils import to_native_string
+1 -1
View File
@@ -53,7 +53,7 @@ requires = []
test_requirements = ['pytest>=2.8.0', 'pytest-httpbin==0.0.7', 'pytest-cov', 'pytest-mock']
about = {}
with open(os.path.join(here, 'requests', '__about__.py')) as f:
with open(os.path.join(here, 'requests', '__version__.py')) as f:
exec(f.read(), about)
with open('README.rst', 'r', 'utf-8') as f: