Hello community,
I am trying to test for different Python versions on different Ubuntu releases:
language: python
matrix:
include:
- dist: precise
os: linux
language: python
python: "2.7"
- dist: precise
os: linux
language: python
python: "3.6"
- dist: bionic
os: linux
language: python
python: "2.7"
- dist: bionic
os: linux
language: python
python: "3.6"
- dist: focal
os: linux
language: python
python: "2.7"
- dist: focal
os: linux
language: python
python: "3.6"
I am not sure here. Can’t this be simplified?
Any hint is appreciated.
Kind regards;
Stephan