Skip to content

Commit 19bde89

Browse files
committed
Remove extra python versions from CI
1 parent 1bd3dfb commit 19bde89

File tree

6 files changed

+18
-44
lines changed

6 files changed

+18
-44
lines changed

.travis.yml

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,9 @@ jobs:
88
before_script: cd $TRAVIS_BUILD_DIR/python
99
script: tox
1010

11-
- name: python 3.5
11+
- name: python 3.9
1212
language: python
13-
python: 3.5
14-
sudo: false
15-
install: pip install tox-travis
16-
before_script: cd $TRAVIS_BUILD_DIR/python
17-
script: tox
18-
19-
- name: python 3.6
20-
language: python
21-
python: 3.6
22-
sudo: false
23-
install: pip install tox-travis
24-
before_script: cd $TRAVIS_BUILD_DIR/python
25-
script: tox
26-
27-
- name: python 3.7
28-
language: python
29-
python: 3.7
30-
sudo: true
31-
dist: xenial
32-
install: pip install tox-travis
33-
before_script: cd $TRAVIS_BUILD_DIR/python
34-
script: tox
35-
36-
- name: python 3.8
37-
language: python
38-
python: 3.8
13+
python: 3.9
3914
sudo: true
4015
dist: xenial
4116
install: pip install tox-travis

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ Please note that if your distro has a "dev" package (`libuv1-dev`, `libuv-devel`
187187
**Note:** This is **not** necessary for the default stdio version of OmniSharp-roslyn.
188188

189189
### Install Python (HTTP only)
190-
Install the latest version of python 3 ([Python 3.7](https://www.python.org/downloads/release/python-370/)) or 2 ([Python 2.7.15](https://www.python.org/downloads/release/python-2715/)).
190+
Install python 3 or 2: [python downloads](https://www.python.org/downloads/).
191191
Make sure that you pick correct version of Python to match your vim's architecture (32-bit python for 32-bit vim, 64-bit python for 64-bit vim).
192192

193193
Verify that Python is working inside Vim with

python/.python-version

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
2.7.13
2-
3.4.6
3-
3.5.3
4-
3.6.0
1+
2.7.18
2+
3.6.10
3+
3.7.10
4+
3.8.8
5+
3.9.2

python/setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@
3232
'Programming Language :: Python :: 2',
3333
'Programming Language :: Python :: 2.7',
3434
'Programming Language :: Python :: 3',
35-
'Programming Language :: Python :: 3.5',
3635
'Programming Language :: Python :: 3.6',
36+
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
3739
],
3840

3941
# What does your project relate to?

python/tox-appveyor.ini

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@
99

1010
[tox]
1111
envlist =
12-
# py27,
13-
py35,
14-
py36,
15-
py37
12+
py27,
13+
py38
1614
# lint2,
1715
# lint
1816

@@ -34,7 +32,7 @@ commands=
3432
pycodestyle {envsitepackagesdir}/omnisharp {toxinidir}/tests
3533

3634
[testenv:lint]
37-
basepython=python3.7
35+
basepython=python3.8
3836
deps =
3937
pylint
4038
pycodestyle
@@ -45,7 +43,7 @@ commands=
4543
pycodestyle {envsitepackagesdir}/omnisharp {toxinidir}/tests
4644

4745
[testenv:coverage]
48-
basepython=python3.7
46+
basepython=python3.8
4947
deps =
5048
pytest
5149
pytest-mock

python/tox.ini

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
[tox]
77
envlist =
88
py27,
9-
py35,
10-
py36,
11-
py37,
9+
py38,
1210
lint2,
1311
lint
1412

@@ -30,7 +28,7 @@ commands=
3028
pycodestyle {envsitepackagesdir}/omnisharp {toxinidir}/tests
3129

3230
[testenv:lint]
33-
basepython=python3.7
31+
basepython=python3.8
3432
deps =
3533
pylint
3634
pycodestyle
@@ -41,7 +39,7 @@ commands=
4139
pycodestyle {envsitepackagesdir}/omnisharp {toxinidir}/tests
4240

4341
[testenv:coverage]
44-
basepython=python3.7
42+
basepython=python3.8
4543
deps =
4644
pytest
4745
pytest-mock

0 commit comments

Comments
 (0)