From 66714a8c8ceb51850cdc7bc62c6bf44b04559b8f Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Tue, 30 Jul 2024 16:24:55 +0200 Subject: [PATCH 1/2] cleanup: remove old setuptools testing `python setup.py test` has been deprecated for the last 5 years. Starting with `setuptools==72.0.0` it has been finally removed. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index eff064e..21a166e 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,6 @@ ), include_package_data=True, zip_safe=False, - test_suite="i18ndude.tests", python_requires=">=3.8", install_requires=[ "lxml", From 72bea0676d52b527c19fcaefd57eae6b19fb9662 Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Tue, 30 Jul 2024 16:25:24 +0200 Subject: [PATCH 2/2] Add news entry --- news/+ignore.internal | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/+ignore.internal diff --git a/news/+ignore.internal b/news/+ignore.internal new file mode 100644 index 0000000..85df1d6 --- /dev/null +++ b/news/+ignore.internal @@ -0,0 +1 @@ +Remove old way to run tests with setuptools [gforcada]