Skip to content

Commit

Permalink
Run CI tests and add trove classifier for Python 3.10 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
chayim committed Oct 27, 2021
1 parent 6ffd70a commit b8cbc44
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [pypy3, 3.6, 3.7, 3.8, 3.9]
python-version: ['pypy3', '3.6', '3.7', '3.8', '3.9', '3.10']
os: [macos-10.15, ubuntu-18.04, ubuntu-20.04, windows-2019]

steps:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# 2.4 (unreleased)

* Print absolute filepaths as relative again (as with 2.1 and before) if they
are below the current directory. (The-Compiler, #246)
are below the current directory (The-Compiler, #246).
* Run tests and add PyPI trove for Python 3.10 (chayim, #266).

# 2.3 (2021-01-16)

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def find_version(*parts):
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Quality Assurance",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = cleanup, py{36,37,38,39}, style
envlist = cleanup, py{36,37,38,39,310}, style
skip_missing_interpreters = true

# Erase old coverage results, then accumulate them during this tox run.
Expand Down

0 comments on commit b8cbc44

Please sign in to comment.