Skip to content

Commit

Permalink
Dropped support for Python 3.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsAsplund committed Dec 4, 2017
1 parent 4b9acfd commit f4c851b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 10 deletions.
2 changes: 0 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ environment:

- BUILD_NAME: py27-unit
PYTHON: "C:\\Python27"
- BUILD_NAME: py33-unit
PYTHON: "C:\\Python33"
- BUILD_NAME: py34-unit
PYTHON: "C:\\Python34"
- BUILD_NAME: py35-unit
Expand Down
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ matrix:
include:
- env: BUILD_NAME=py27-unit
python: '2.7'
- env: BUILD_NAME=py33-unit
python: '3.3'
- env: BUILD_NAME=py34-unit
python: '3.4'
- env: BUILD_NAME=py35-unit
Expand Down
2 changes: 1 addition & 1 deletion docs/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Python
******

- Python 2.7
- Python 3.3 or higher
- Python 3.4 or higher

Simulators
**********
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ def find_all_files(directory, endings=None):
'Natural Language :: English',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
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{27,33,34,35,36}-unit, py{27,33,34,35,36}-acceptance-{activehdl,ghdl,modelsim,rivierapro}, py{27,35,36}-lint, py{27,35,36}-docs, py{27,35,36}-license
envlist = py{27,34,35,36}-unit, py{27,34,35,36}-acceptance-{activehdl,ghdl,modelsim,rivierapro}, py{27,35,36}-lint, py{27,35,36}-docs, py{27,35,36}-license
skip_missing_interpreters = True

[testenv]
Expand Down
6 changes: 3 additions & 3 deletions vunit/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

def version_is_ok():
"""
Returns true if version is 2.7 or higher or equal to 3.3
Returns true if version is 2.7 or higher or equal to 3.4
"""
version = (sys.version_info[0],
sys.version_info[1])
return version == (2, 7) or version >= (3, 3)
return version == (2, 7) or version >= (3, 4)


if not version_is_ok():
Expand All @@ -27,5 +27,5 @@ def version_is_ok():
sys.version_info[1]))
print("VUnit supports versions:")
print(" - Python 2.7")
print(" - Python 3.3 or higher")
print(" - Python 3.4 or higher")
exit(1)

0 comments on commit f4c851b

Please sign in to comment.