]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Release 0.7.1 (#234) 0.7.1
authorSeth Michael Larson <sethmichaellarson@gmail.com>
Sun, 18 Aug 2019 10:19:14 +0000 (05:19 -0500)
committerGitHub <noreply@github.com>
Sun, 18 Aug 2019 10:19:14 +0000 (05:19 -0500)
CHANGELOG.md
MANIFEST.in [new file with mode: 0644]
httpx/__version__.py
setup.py

index 7b78d6728e2297ab8de58032ad1831465c9e0d57..b1cc654e05f201cdafde5c03a3678afad1472b2e 100644 (file)
@@ -1,5 +1,9 @@
 # Changelog
 
+## 0.7.1 (August 18, 2019)
+
+- Include files with source distribution to be installable. (Pull #233)
+
 ## 0.7.0 (August 17, 2019)
 
 - Add the `trust_env` property to `BaseClient`. (Pull #187)
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644 (file)
index 0000000..ddac380
--- /dev/null
@@ -0,0 +1,3 @@
+include README.md
+include CHANGELOG.md
+include LICENSE.md
index 0b359bda4fe5b6501b76de7297d7260f93fda99e..aea9e4d99fe9487445d40951fe796411cbd470e9 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.7.0"
+__version__ = "0.7.1"
index 51268abcb9945f48a3413cf20ab8fb15971a45ca..e0b42e770f7a513a1e4eeaa18788a0e72200017b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -48,6 +48,7 @@ setup(
     author_email="tom@tomchristie.com",
     package_data={"httpx": ["py.typed"]},
     packages=get_packages("httpx"),
+    include_package_data=True,
     install_requires=[
         "certifi",
         "chardet==3.*",