Skip to content

Commit f2dcee9

Browse files
authored
Drop py 36 (#268)
* Update run-tests.yml * Update README.md * Update tox.ini
1 parent 8a1fa07 commit f2dcee9

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 6 deletions
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:
@@ -49,4 +45,4 @@ jobs:
4945
file: coverage.xml
5046
flags: unittests
5147
name: codecov-umbrella
52-
fail_ci_if_error: true
48+
fail_ci_if_error: true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build Status](https://github.com/robotools/fontMath/workflows/Tests/badge.svg)](https://github.com/robotools/fontMath/actions?query=workflow%3ATests)
22
[![codecov](https://codecov.io/gh/robotools/fontMath/branch/master/graph/badge.svg)](https://codecov.io/gh/robotools/fontMath)
33
[![PyPI version fury.io](https://badge.fury.io/py/fontMath.svg)](https://pypi.org/project/fontMath/)
4-
![Python versions](https://img.shields.io/badge/python-3.6%2C%203.7%2C%203.8%2C%203.9-blue.svg)
4+
![Python versions](https://img.shields.io/badge/python-3.7%2C%203.8%2C%203.9-blue.svg)
55

66
# fontMath
77
A collection of objects that implement fast font, glyph, etc. math.

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{7,6,7,8,9}-cov, htmlcov
2+
envlist = py3{7,8,9}-cov, htmlcov
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)