Skip to content

Commit

Permalink
remove Python 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
1138-4EB committed Nov 30, 2019
1 parent 62f4427 commit 74ae885
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 17 deletions.
5 changes: 2 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ environment:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python

- BUILD_NAME: py35-unit
PYTHON: "C:\\Python35"

- BUILD_NAME: py36-unit
PYTHON: "C:\\Python36"
- BUILD_NAME: py38-unit
PYTHON: "C:\\Python38"

Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ matrix:
python: '3.8'


- env: BUILD_NAME=py35-unit
python: '3.5'
- env: BUILD_NAME=py36-unit
python: '3.6'
- env: BUILD_NAME=py38-unit
dist: xenial
python: '3.8'
Expand Down
12 changes: 3 additions & 9 deletions docs/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,11 @@ Requirements
------------

VUnit depends on a number of components as listed below. Full VUnit
functionality requires Python and a simulator supported by the VUnit
Python test runner. However, VUnit can run with limited functionality
entirely within VHDL using the :doc:`VHDL test runner
functionality requires Python (3.6 or higher) and a simulator supported
by the VUnit Python test runner. However, VUnit can run with limited
functionality entirely within VHDL using the :doc:`VHDL test runner
<./run/user_guide>`.


Languages
*********

Expand All @@ -81,11 +80,6 @@ Operating systems
- Linux
- Mac OS X

Python
******

- Python 3.5 or higher

Simulators
**********

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def find_all_files(directory, endings=None):
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -71,7 +70,7 @@ def find_all_files(directory, endings=None):
"Topic :: Software Development :: Testing",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
],
python_requires=">=3.5",
python_requires=">=3.6",
install_requires=["colorama"],
requires=["colorama"],
license=["Mozilla Public License 2.0 (MPL 2.0)"],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{36,37,38}-fmt, py{35,36,37,38}-{unit}, py{35,36,37,38}-{lint,docs}, py{35,36,37,38}-{acceptance,vcomponents}-{activehdl,ghdl,modelsim,rivierapro}
envlist = py{36,37,38}-fmt, py{36,37,38}-{unit}, py{36,37,38}-{lint,docs}, py{36,37,38}-{acceptance,vcomponents}-{activehdl,ghdl,modelsim,rivierapro}
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 74ae885

Please sign in to comment.