Skip to content

Commit

Permalink
Merge pull request #42 from NextThought/py310
Browse files Browse the repository at this point in the history
Add support for Python 3.10
  • Loading branch information
jamadden committed Oct 6, 2021
2 parents e42beeb + 6c7cf06 commit 4b3a560
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
test:
strategy:
matrix:
python-version: [2.7, pypy2, pypy3, 3.6, 3.7, 3.8, 3.9]
python-version: [2.7, pypy2, pypy3, 3.6, 3.7, 3.8, 3.9, "3.10"]

runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 4 additions & 1 deletion CHANGES.rst
Expand Up @@ -5,11 +5,14 @@
1.8.0 (unreleased)
==================

- Add support for Python 3.9.
- Add support for Python 3.9 and 3.10.
- Move to Github Actions from Travis CI.
- The algorithm for converting HTML to plain text has been changed and
produces higher quality output. For example, links are preserved in
a human-readable fashion. See `issue 39 <https://github.com/NextThought/nti.contentfragments/issues/39>`_.
- Fix an error getting link text when there was no link formatter
utility installed. See `PR 42
<https://github.com/NextThought/nti.contentfragments/pull/41#event-5422788226>`_.

1.7.0 (2020-10-07)
==================
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -42,6 +42,7 @@ def _read(fname):
'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',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = pypy,py27,py36,py37,py38,py39,pypy3,coverage,docs
envlist = pypy,py27,py36,py37,py38,py39,py310,pypy3,coverage,docs

[testenv]
usedevelop = true
Expand Down

0 comments on commit 4b3a560

Please sign in to comment.