Skip to content

Commit c8b25bc

Browse files
authored
Merge pull request #47 from robotools/drop_py36
Drop support for Python 3.6
2 parents 9e2cd68 + e0de476 commit c8b25bc

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/run-tests.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,11 @@ jobs:
1818
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
1919
strategy:
2020
matrix:
21-
python-version: [3.6, 3.7, 3.8, 3.9]
21+
python-version: [3.7, 3.8, 3.9]
2222
platform: [ubuntu-latest, macos-latest, windows-latest]
2323
exclude: # Only test on the oldest and latest supported stable Python on macOS and Windows.
24-
- platform: macos-latest
25-
python-version: 3.7
2624
- platform: macos-latest
2725
python-version: 3.8
28-
- platform: windows-latest
29-
python-version: 3.7
3026
- platform: windows-latest
3127
python-version: 3.8
3228
steps:

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ However, the import name for the package remains ``extractor``, without prefix.
4747
:target: https://github.com/robotools/extractor/actions?query=workflow%3ATests
4848
.. |PyPI Version| image:: https://img.shields.io/pypi/v/ufo-extractor.svg
4949
:target: https://pypi.org/project/ufo-extractor/
50-
.. |Python Versions| image:: https://img.shields.io/badge/python-3.6%2C%203.8-blue.svg
50+
.. |Python Versions| image:: https://img.shields.io/badge/python-3.7%2C%203.8%2C%203.9-blue.svg

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.0
3-
envlist = py3{6,7,8,9}
3+
envlist = py3{7,8,9}
44
skip_missing_interpreters = true
55

66
[testenv]

0 commit comments

Comments
 (0)