# HG changeset patch # User RhodeCode Admin # Date 2023-03-03 14:08:36 # Node ID d10fadc4ee1b7bc2b723a7f3d9c02844b89fc12f # Parent 05a103e84320f003812cab64a5045f07b355c40d python3: fixed support version string, makefile update diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ test-only: test-clean: rm -rf coverage.xml htmlcov junit.xml pylint.log result find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';' + find . -type d -name ".pytest_cache" -prune -exec rm -rf '{}' ';' find . -type f \( -iname '.coverage.*' \) -exec rm '{}' ';' .PHONY: pip-packages diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -155,7 +155,7 @@ setup( 'Operating System :: OS Independent', 'Topic :: Software Development :: Version Control', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', - 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.10', ], entry_points={ 'paste.app_factory': ['main=vcsserver.http_main:main']