| 12345678910111213141516171819202122232425262728293031323334353637 |
- Subject: Chore(tests): add Python 3.10 and 3.11 in CI runs/tox/trove classifier (#284)
- Origin: upstream, commit 0.4.27-12-gc7642f0 <https://github.com/ahupp/python-magic/commit/0.4.27-12-gc7642f0>
- Author: Stevie Gayet <87695919+stegayet@users.noreply.github.com>
- Date: Mon Jan 23 16:06:24 2023 +0100
- --- a/.travis.yml
- +++ b/.travis.yml
- @@ -9,6 +9,8 @@
- - "3.7"
- - "3.8"
- - "3.9"
- + - "3.10"
- + - "3.11"
-
- install:
- - pip install coverage coveralls codecov
- --- a/setup.py
- +++ b/setup.py
- @@ -39,6 +39,8 @@
- 'Programming Language :: Python :: 3.7',
- 'Programming Language :: Python :: 3.8',
- 'Programming Language :: Python :: 3.9',
- + 'Programming Language :: Python :: 3.10',
- + 'Programming Language :: Python :: 3.11',
- 'Programming Language :: Python :: Implementation :: CPython',
- ],
- )
- --- a/tox.ini
- +++ b/tox.ini
- @@ -7,6 +7,7 @@
- py38,
- py39,
- py310,
- + py311,
- mypy
-
- [testenv]
|