Commit f41e32d76c15d2f2a2baf0291376cce5226fa8d2

Authored by Adam Chainz
Committed by Claude Paroz
1 parent 282eb831

Stopped setup.py from packaging test submodules (#106)

Showing 2 changed files with 4 additions and 1 deletions
... ... @@ -6,6 +6,9 @@ History
6 6 Pending
7 7 -------
8 8
  9 +* Fixed a packaging error which caused sub-packages of the tests to be
  10 + distributed.
  11 +
9 12 1.7.3 (2016-09-13)
10 13 ------------------
11 14
... ...
... ... @@ -38,7 +38,7 @@ setup(
38 38 'Programming Language :: Python :: 3.3',
39 39 'Programming Language :: Python :: 3.4',
40 40 ],
41   - packages=find_packages(exclude=['tests']),
  41 + packages=find_packages(exclude=['tests', 'tests.*']),
42 42 include_package_data=True,
43 43 test_suite='tests.runtests.main',
44 44 install_requires=['Django>=1.7']
... ...
Please register or login to post a comment