diff --git a/docs/installing.rst b/docs/installing.rst index 1196d65cb..a871bc532 100644 --- a/docs/installing.rst +++ b/docs/installing.rst @@ -8,7 +8,7 @@ Requirements ============ .. NOTE:: - Full VUnit functionality requires Python (3.6 or higher) and a simulator + Full VUnit functionality requires Python (3.7 or higher) and a simulator supported by the VUnit Python test runner (see list below). However, VUnit can run with limited functionality entirely within VHDL using the :doc:`VHDL test runner <./run/user_guide>`. diff --git a/setup.py b/setup.py index fbaab74bb..46bd9aa4e 100644 --- a/setup.py +++ b/setup.py @@ -69,13 +69,15 @@ def find_all_files(directory, endings=None): "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Operating System :: Microsoft :: Windows", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: Linux", "Topic :: Software Development :: Testing", "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", ], - python_requires=">=3.6", + python_requires=">=3.7", install_requires=["colorama"], requires=["colorama"], license="Mozilla Public License 2.0 (MPL 2.0)",