Skip to content

Commit

Permalink
Merge pull request #46 from tk0miya/test_with_py38_39_310
Browse files Browse the repository at this point in the history
Do test with py3.8, 3.9 and 3.10-dev
  • Loading branch information
tk0miya committed Mar 15, 2021
2 parents 0d59000 + 21d154d commit ca7bed9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10-dev]
max-parallel: 1

steps:
Expand All @@ -31,6 +31,13 @@ jobs:
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v2
if: "!endsWith(matrix.python-version, '-dev')"
with:
python-version: ${{ matrix.python-version }}

- name: Setup python ${{ matrix.python-version }} (via deadsnakes)
uses: deadsnakes/action@v2.1.1
if: "endsWith(matrix.python-version, '-dev')"
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Sphinx",
],
author="Takayuki SHIMIZUKAWA",
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
[tox]
envlist =
py{35,36,37},
py{35,36,37,38,39,310-dev},
flake8

[gh-actions]
python =
3.5: py35
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10-dev: py310-dev

[testenv]
deps=-e.[transifex,test]
Expand Down

0 comments on commit ca7bed9

Please sign in to comment.