summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.org>2017-05-25 20:07:38 -0400
committerKenneth Reitz <me@kennethreitz.org>2017-05-25 20:07:38 -0400
commit14d6fa1472cfbaaeb23c23ad4029bac82547c34d (patch)
treeb1aab2f7492c37109096446ce6368a3905fd1a0a /setup.py
parent64efd9cfe0909c831bc0737331131a2546237acf (diff)
downloadpython-requests-14d6fa1472cfbaaeb23c23ad4029bac82547c34d.tar.gz
__version__.py
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index fd8a1716..534b23aa 100755
--- a/setup.py
+++ b/setup.py
@@ -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: