]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Omit include of no longer existing files
authorMichael Howitz <mh@gocept.com>
Mon, 17 Dec 2018 16:04:44 +0000 (11:04 -0500)
committermike bayer <mike_mp@zzzcomputing.com>
Thu, 20 Dec 2018 14:55:32 +0000 (14:55 +0000)
Warnings are generated during setup.py install such as:

```
Getting distribution for 'SQLAlchemy==1.2.15'.
warning: no files found matching '*.jpg' under directory 'doc'
warning: no files found matching '*.mako' under directory 'doc'
warning: no files found matching 'distribute_setup.py'
warning: no files found matching 'sa2to3.py'
warning: no files found matching 'ez_setup.py'
```

This change removes those expressions from MANIFEST.in.

Closes: #4408
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/4408
Pull-request-sha: 448b3a9dc8f25d841f20bcd67130acaea68cb745

Change-Id: Id6373611fb384e230427f87b9e75672d78483000

MANIFEST.in

index 9b5b29936224aa6f0fabf03642e7058fe75ed9bf..16faa949cf655da56b13970eb23b3af5538acde6 100644 (file)
@@ -1,7 +1,7 @@
 # any kind of "*" pulls in __init__.pyc files,
 # so all extensions are explicit.
 
-recursive-include doc *.html *.css *.txt *.js *.jpg *.png *.py Makefile *.rst *.mako *.sty
+recursive-include doc *.html *.css *.txt *.js *.png *.py Makefile *.rst *.sty
 recursive-include examples *.py *.xml
 recursive-include test *.py *.dat
 
@@ -9,5 +9,5 @@ recursive-include test *.py *.dat
 # don't come in if --with-cextensions isn't specified.
 recursive-include lib *.c *.txt
 
-include README* AUTHORS LICENSE distribute_setup.py sa2to3.py ez_setup.py sqla_nose.py CHANGES* tox.ini
+include README* AUTHORS LICENSE sqla_nose.py CHANGES* tox.ini
 prune doc/build/output