summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2022-05-01 12:04:10 -0600
committerGitHub <noreply@github.com>2022-05-01 12:04:10 -0600
commitd9938ae6b6746903b830a5e19048637aec58389c (patch)
treeafc7585c44d251f6b32de5a0f226719cd6c4773c
parent247ec22703ebee960191ff5329aa398597dfc05c (diff)
downloadpy-bcrypt-git-d9938ae6b6746903b830a5e19048637aec58389c.tar.gz
Forward port fixes (#323)
-rw-r--r--README.rst5
-rw-r--r--setup.cfg1
2 files changed, 6 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index ecd247d..efab4be 100644
--- a/README.rst
+++ b/README.rst
@@ -57,6 +57,11 @@ UNRELEASED
to have a Rust compiler available. Nothing will change for users downloading
wheels.
+3.2.2
+-----
+
+* Fixed packaging of ``py.typed`` files in wheels so that ``mypy`` works.
+
3.2.1
-----
diff --git a/setup.cfg b/setup.cfg
index 26aabe1..899bda7 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -24,6 +24,7 @@ classifiers =
[options]
python_requires = >=3.6
+include_package_data = True
zip_safe = False
package_dir =
=src