Skip to content

Commit 8354d02

Browse files
committed
upgrade python version in CI to fix SSL for releases
1 parent 2d0c21f commit 8354d02

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cache:
55
- pip
66
language: python
77
python:
8-
- '3.9'
8+
- '3.10-dev'
99
env:
1010
global:
1111
- COVERALLS_PARALLEL=true
@@ -19,15 +19,15 @@ after_success:
1919
jobs:
2020
include:
2121
- stage: lint
22-
python: '3.9'
22+
python: '3.10-dev'
2323
install:
2424
- pip install tox-travis
25-
script: tox -e py39-lint
25+
script: tox -e py310-lint
2626
env:
2727
- TEST_SUITE=lint
2828
- stage: deploy
2929
script: skip
30-
python: '3.9'
30+
python: '3.10-dev'
3131
deploy:
3232
provider: pypi
3333
user: openshift
@@ -38,7 +38,7 @@ jobs:
3838
repo: openshift/openshift-restclient-python
3939
condition: "$TRAVIS_TAG =~ ^v[0-9]+\\.[0-9]+\\.[0-9]+(([ab]|dev|rc)[0-9]+)?$"
4040
- stage: test-deploy
41-
python: '3.9'
41+
python: '3.10-dev'
4242
script: python -c "import openshift ; print(openshift.__version__)"
4343
install:
4444
- pip install openshift

0 commit comments

Comments
 (0)