From 7f222e682d8b656a7efcf36b09cbf7f910f9905d Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Wed, 6 Apr 2022 18:24:08 +0100 Subject: [PATCH] Test with Python 3.10 (#88) --- .github/workflows/tests.yml | 6 +++++- README.rst | 1 + setup.py | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 00d6a06..af16404 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,6 +17,8 @@ jobs: python: 3.8 - os: ubuntu-latest python: 3.9 + - os: ubuntu-latest + python: '3.10' - os: macos-latest python: 3.7 - os: macos-latest @@ -24,8 +26,10 @@ jobs: conda: True - os: macos-latest python: 3.9 + - os: macos-latest + python: '3.10' - os: windows-latest - python: 3.7 + python: '3.10' steps: - uses: actions/checkout@v2 diff --git a/README.rst b/README.rst index 0de77b9..b0fa163 100644 --- a/README.rst +++ b/README.rst @@ -271,6 +271,7 @@ Changelog Install a particular version, for example ``0.1.14``, with ``pip install html5validator==0.1.14``. * `main `_ + * test with Python 3.10 * `0.4.0 `_ (2021-05-03) * update vnu jar to 21.4.9 * use `--stdout` and `--asciiquotes` by default for vnu.jar diff --git a/setup.py b/setup.py index 6e2a0da..0769f75 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,7 @@ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", 'Programming Language :: Python :: Implementation :: PyPy', ] )