From: Hugo van Kemenade Date: Sun, 12 Sep 2021 15:11:50 +0000 (+0300) Subject: Add support for Python 3.10 X-Git-Tag: v2.10.0~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5acaff238d69479db99d24405400f78e27ec7186;p=thirdparty%2Fbabel.git Add support for Python 3.10 --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e9c41186..43eb3e9c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-18.04, windows-2019, macos-10.15] - python-version: [3.6, 3.7, 3.8, 3.9, pypy3] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev, pypy3] exclude: - os: windows-2019 python-version: pypy3 diff --git a/setup.py b/setup.py index adf3bb5d..36d89a2c 100755 --- a/setup.py +++ b/setup.py @@ -45,10 +45,12 @@ setup( 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.6', '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 :: Libraries :: Python Modules', diff --git a/tox.ini b/tox.ini index 14b450ff..9d3ecbe0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{36,37,38,39} + py{36,37,38,39,310} pypy3 [testenv] @@ -23,3 +23,4 @@ python = 3.7: py37 3.8: py38 3.9: py39 + 3.10-dev: py310