1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-07-16 08:49:15 -04:00
ports/www/py-django-netfields/files/patch-setup.py
Kai Knoblich deddeae48f www/py-django-netfields: Update to 1.2.4
* Also assume maintainership.

Changelog since 1.2.2:

https://github.com/jimfunk/django-postgresql-netfields/blob/v1.2.4/CHANGELOG

PR:		258461
Approved by:	maintainer timeout (+14 days)
MFH:		2021Q4
2021-10-03 14:58:15 +02:00

14 lines
415 B
Python

Avoid the installation of the test suite in the top-level directory
of ${PYTHON_SITELIBDIR}.
--- setup.py.orig 2021-09-12 11:44:16 UTC
+++ setup.py
@@ -33,7 +33,7 @@ setup(
author=u'James Oakley',
author_email='jfunk@funktronics.ca',
- packages=find_packages(),
+ packages=find_packages(exclude=['test*']),
include_package_data=True,
zip_safe=False,
install_requires=requirements,