Skip to content

Commit 0be97e5

Browse files
committed
Added classifiers and test on Python 3.10
1 parent 5102527 commit 0be97e5

File tree

7 files changed

+18
-5
lines changed

7 files changed

+18
-5
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "windows-2019"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.4'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,6 +23,7 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26+
- {python-version: "3.10.0-alpha.4", testenvs: "py310-dev,build", experimental: True}
2627

2728
steps:
2829
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.4'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,6 +23,7 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26+
- {python-version: "3.10.0-alpha.4", testenvs: "py310-dev,build", experimental: True}
2627

2728
steps:
2829
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "macos-latest"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.4'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,6 +23,7 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26+
- {python-version: "3.10.0-alpha.4", testenvs: "py310-dev,build", experimental: True}
2627

2728
steps:
2829
- name: Checkout 🛎️

flake8_github_actions/py.typed

Whitespace-only changes.

repo_helper.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ python_versions:
1818
- 3.7
1919
- 3.8
2020
- 3.9
21+
- 3.10-dev
2122

2223
additional_ignore:
2324
- action.py
@@ -30,3 +31,8 @@ keywords:
3031
entry_points:
3132
flake8.report:
3233
- github = flake8_github_actions:GitHubFormatter
34+
35+
classifiers:
36+
- 'Environment :: Console'
37+
- 'Framework :: Flake8'
38+
- 'Intended Audience :: Developers'

setup.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ project_urls =
2020
Issue Tracker = https://github.com/domdfcoding/flake8-github-actions/issues
2121
Source Code = https://github.com/domdfcoding/flake8-github-actions
2222
classifiers =
23+
Environment :: Console
24+
Framework :: Flake8
25+
Intended Audience :: Developers
2326
License :: OSI Approved :: MIT License
2427
Operating System :: OS Independent
2528
Programming Language :: Python
@@ -29,6 +32,7 @@ classifiers =
2932
Programming Language :: Python :: 3.8
3033
Programming Language :: Python :: 3.9
3134
Programming Language :: Python :: Implementation :: CPython
35+
Typing :: Typed
3236

3337
[options]
3438
python_requires = >=3.6.1

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
# * pytest
1717

1818
[tox]
19-
envlist = py36, py37, py38, py39, mypy, build
19+
envlist = py36, py37, py38, py39, py310-dev, mypy, build
2020
skip_missing_interpreters = True
2121
requires =
2222
pip>=20.3.3
2323
tox-envlist>=0.1.0
2424
isolated_build = True
2525

2626
[envlists]
27-
test = py36, py37, py38, py39
27+
test = py36, py37, py38, py39, py310-dev
2828
qa = mypy, lint
2929

3030
[testenv]

0 commit comments

Comments
 (0)