Skip to content

Commit 689d464

Browse files
committed
be more explicit about supported python versions
1 parent e68dcf4 commit 689d464

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ jobs:
99
- uses: actions/setup-python@v1
1010
with:
1111
python-version: "3.x"
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v2
1313
- name: Lint with flake8
1414
run: |
15-
pip install --upgrade pip
1615
pip install flake8
1716
flake8 .
1817
- name: Lint with black
@@ -22,16 +21,18 @@ jobs:
2221
2322
build:
2423
runs-on: ubuntu-latest
24+
strategy:
25+
matrix:
26+
python-version: [3.6, 3.7, 3.8]
2527
steps:
2628
- uses: actions/setup-python@v1
2729
with:
2830
python-version: "3.x"
29-
- uses: actions/checkout@v1
31+
- uses: actions/checkout@v2
3032
- name: Install dependencies
3133
run: sudo apt-get install -y texlive-latex-base texlive-latex-extra context python3-tk
3234
- name: Install package
3335
run: |
34-
pip install --upgrade pip
3536
pip install .
3637
- name: Extract tests from README
3738
run: |

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square)](https://github.com/psf/black)
88
[![Documentation Status](https://readthedocs.org/projects/tikzplotlib/badge/?version=latest&style=flat-square)](https://readthedocs.org/projects/tikzplotlib/?badge=latest)
99
[![awesome](https://img.shields.io/badge/awesome-yes-brightgreen.svg?style=flat-square)](https://github.com/nschloe/tikzplotlib)
10+
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/tikzplotlib.svg?style=flat-square)](https://pypi.org/pypi/tikzplotlib/)
1011
[![PyPi Version](https://img.shields.io/pypi/v/tikzplotlib.svg?style=flat-square)](https://pypi.org/project/tikzplotlib)
1112
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1173089.svg?style=flat-square)](https://doi.org/10.5281/zenodo.1173089)
1213
[![GitHub stars](https://img.shields.io/github/stars/nschloe/tikzplotlib.svg?style=flat-square&logo=github&label=Stars&logoColor=white)](https://github.com/nschloe/tikzplotlib)

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@
2626
about["__status__"],
2727
about["__license__"],
2828
"Operating System :: OS Independent",
29-
"Programming Language :: Python",
3029
"Programming Language :: Python :: 3",
30+
"Programming Language :: Python :: 3.6",
31+
"Programming Language :: Python :: 3.7",
32+
"Programming Language :: Python :: 3.8",
3133
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
3234
"Topic :: Scientific/Engineering :: Visualization",
3335
],

0 commit comments

Comments
 (0)