From: Mike Bayer Date: Tue, 19 Jan 2021 14:55:06 +0000 (-0500) Subject: fix erroneous package_dir directive X-Git-Tag: rel_1_5_1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbde2300dfae165faaa1d882ed76ccd93389e71d;p=thirdparty%2Fsqlalchemy%2Falembic.git fix erroneous package_dir directive Fixed installation issue where the "templates" directory was not being installed, preventing commands like "list-templates" and "init" from working. Change-Id: Ic47cee2dbb3c4c81a34e91557a3275ef68a22b74 Fixes: #780 --- diff --git a/docs/build/unreleased/780.rst b/docs/build/unreleased/780.rst new file mode 100644 index 00000000..e0912080 --- /dev/null +++ b/docs/build/unreleased/780.rst @@ -0,0 +1,7 @@ +.. change:: + :tags: bug, installation, commands + :tickets: 780 + + Fixed installation issue where the "templates" directory was not being + installed, preventing commands like "list-templates" and "init" from + working. diff --git a/setup.cfg b/setup.cfg index 054c9fc5..59be5360 100644 --- a/setup.cfg +++ b/setup.cfg @@ -40,8 +40,6 @@ packages = find: include_package_data = true zip_safe = false python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.* -package_dir = - =. install_requires = SQLAlchemy>=1.3.0