Skip to content

Commit 92178ce

Browse files
authored
Start testing python 3.10 (#269)
* Update tox.ini * Update README.md * Update run-tests.yml * Update run-tests.yml
1 parent c13bd93 commit 92178ce

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,17 @@ jobs:
1818
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
1919
strategy:
2020
matrix:
21-
python-version: [3.7, 3.8, 3.9]
21+
python-version: ['3.7', '3.8', '3.9', '3.10']
2222
platform: [ubuntu-latest, macos-latest, windows-latest]
2323
exclude: # Only test on the oldest and latest supported stable Python on macOS and Windows.
2424
- platform: macos-latest
2525
python-version: 3.8
2626
- platform: windows-latest
2727
python-version: 3.8
28+
- platform: macos-latest
29+
python-version: 3.9
30+
- platform: windows-latest
31+
python-version: 3.9
2832
steps:
2933
- uses: actions/checkout@v2
3034
- name: Set up Python ${{ matrix.python-version }}

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.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%2C%203.10-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,8,9}-cov, htmlcov
2+
envlist = py3{7,8,9,10}-cov, htmlcov
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)