Skip to content

Commit 721bb6a

Browse files
committed
Python 2 End-Of-Life
1 parent a43d633 commit 721bb6a

18 files changed

Lines changed: 4 additions & 45 deletions

.appveyor.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ environment:
77
# For Python versions available on Appveyor, see
88
# http://www.appveyor.com/docs/installed-software#python
99

10-
- BUILD_NAME: py27-unit
11-
PYTHON: "C:\\Python27"
1210
- BUILD_NAME: py34-unit
1311
PYTHON: "C:\\Python34"
1412
- BUILD_NAME: py35-unit
@@ -18,18 +16,12 @@ environment:
1816
- BUILD_NAME: py37-unit
1917
PYTHON: "C:\\Python37"
2018

21-
- BUILD_NAME: py27-lint
22-
PYTHON: "C:\\Python27"
2319
- BUILD_NAME: py37-lint
2420
PYTHON: "C:\\Python37"
2521

26-
- BUILD_NAME: py27-docs
27-
PYTHON: "C:\\Python27"
2822
- BUILD_NAME: py37-docs
2923
PYTHON: "C:\\Python37"
3024

31-
- BUILD_NAME: py27-acceptance-ghdl
32-
PYTHON: "C:\\Python27"
3325
- BUILD_NAME: py37-acceptance-ghdl
3426
PYTHON: "C:\\Python37"
3527

.travis.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,24 @@ matrix:
1010
include:
1111
- &docker
1212
env:
13-
- BUILD_NAME=py27-acceptance-ghdl
14-
- DOCKER_IMAGE=mcode-2
13+
- BUILD_NAME=py37-acceptance-ghdl
14+
- DOCKER_IMAGE=llvm
1515
services: docker
1616
language: minimal
1717
install: skip
1818
script: docker run --rm -tv $(pwd):/src -w /src vunit/dev:$DOCKER_IMAGE tox -e $BUILD_NAME
1919

20-
- <<: *docker
21-
env:
22-
- BUILD_NAME=py37-acceptance-ghdl
23-
- DOCKER_IMAGE=llvm
24-
2520
- <<: *docker
2621
env:
2722
- BUILD_NAME=py37-vcomponents-ghdl
2823
- DOCKER_IMAGE=mcode
2924

3025

31-
- env: BUILD_NAME=py27-lint
32-
python: '2.7'
3326
- env: BUILD_NAME=py37-lint
3427
dist: xenial
3528
python: '3.7'
3629

3730

38-
- env: BUILD_NAME=py27-unit
39-
python: '2.7'
4031
- env: BUILD_NAME=py34-unit
4132
python: '3.4'
4233
- env: BUILD_NAME=py35-unit
@@ -48,9 +39,6 @@ matrix:
4839
python: '3.7'
4940

5041

51-
- env: BUILD_NAME=py27-docs
52-
python: '2.7'
53-
before_script: git fetch --unshallow --tags
5442
- env: BUILD_NAME=py36-docs
5543
python: '3.6'
5644
before_script: git fetch --unshallow --tags
@@ -67,6 +55,7 @@ matrix:
6755
repo: VUnit/vunit
6856
branch: master
6957

58+
7059
# Deploy to PyPI whenever the package version has changed
7160
# When a package version has not changed a new upload will not be triggered
7261
- stage: deploy

vunit/activehdl_interface.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
"""
1010

1111

12-
from __future__ import print_function
13-
1412
from os.path import join, dirname, abspath
1513
import os
1614
import re

vunit/ghdl_interface.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
Interface for GHDL simulator
99
"""
1010

11-
from __future__ import print_function
1211
import logging
1312
from os.path import exists, join, abspath
1413
import os

vunit/incisive_interface.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
Interface for the Cadence Incisive simulator
99
"""
1010

11-
from __future__ import print_function
1211
import os
1312
from os.path import join, dirname, abspath, relpath
1413
import subprocess

vunit/modelsim_interface.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
"""
1010

1111

12-
from __future__ import print_function
13-
1412
import logging
1513
import sys
1614
import io

vunit/ostools.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
"""
1111

1212

13-
from __future__ import print_function
14-
1513
import time
1614
import subprocess
1715
import threading

vunit/parsing/verilog/tokenizer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
Verilog preprocessing
1313
"""
1414

15-
from __future__ import print_function
1615
from vunit.parsing.tokenizer import Tokenizer, Token
1716
from vunit.parsing.verilog.tokens import *
1817

vunit/persistent_tcl_shell.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
A persistent TCL shell to avoid startup overhead in TCL-based simulators
99
"""
1010

11-
from __future__ import print_function
1211
import threading
1312
import logging
1413
from vunit.ostools import Process

vunit/rivierapro_interface.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
"""
1010

1111

12-
from __future__ import print_function
13-
1412
from os.path import join, dirname, abspath
1513
import os
1614
import re

0 commit comments

Comments
 (0)