diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-08-26 17:55:15 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-08-26 17:57:58 -0400 |
commit | 133900c43163127f6870f61b72c1ff9c219b90fd (patch) | |
tree | 55d39dd1f7b821c91accafe282d9ba795cbd0ff1 | |
parent | cff0b0b29e0d33b4e2ba149cd67049052391c4e0 (diff) | |
download | alembic-133900c43163127f6870f61b72c1ff9c219b90fd.tar.gz |
adjust manifest to accommodate .pyi files
Change-Id: I51c7c04c609dd008921e803596c53a48c8b247c0
-rw-r--r-- | MANIFEST.in | 8 | ||||
-rw-r--r-- | docs/build/front.rst | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 5e0b18c..cf6b01d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,10 @@ recursive-include docs *.html *.css *.txt *.js *.jpg *.png *.py Makefile *.rst *.sty -recursive-include tests *.py *.dat -recursive-include alembic/templates *.mako README *.py +recursive-include tests *.py *.dat *.pyi +recursive-include alembic/templates *.mako README *.py *.pyi +recursive-include alembic *.py *.pyi +recursive-include tools *.py -include README* LICENSE run_tests.py CHANGES* tox.ini +include README* LICENSE CHANGES* tox.ini prune docs/build/output exclude pyproject.toml diff --git a/docs/build/front.rst b/docs/build/front.rst index 7f998eb..ccbc95d 100644 --- a/docs/build/front.rst +++ b/docs/build/front.rst @@ -83,7 +83,7 @@ SQLAlchemy as of version **1.3.0**. .. versionchanged:: 1.5.0 Support for SQLAlchemy older than 1.3.0 was dropped. -Alembic supports Python versions **3.6 and above**. +Alembic supports Python versions **3.6 and above** .. versionchanged:: 1.7 Alembic now supports Python 3.6 and newer; support for Python 2.7 has been dropped. |