| 1234567891011121314151617181920212223242526272829303132333435 |
- Subject: Chore(python): add Python 3.12 in test matrix
- Origin: upstream, commit 0.4.27-17-g0cc3cf8 <https://github.com/ahupp/python-magic/commit/0.4.27-17-g0cc3cf8>
- Author: Stevie <stevie.gayet@backmarket.com>
- Date: Sun Aug 6 00:13:22 2023 +0200
- --- a/.travis.yml
- +++ b/.travis.yml
- @@ -11,6 +11,7 @@
- - "3.9"
- - "3.10"
- - "3.11"
- + - "3.12"
-
- install:
- - pip install coverage coveralls codecov
- --- a/setup.py
- +++ b/setup.py
- @@ -41,6 +41,7 @@
- 'Programming Language :: Python :: 3.9',
- 'Programming Language :: Python :: 3.10',
- 'Programming Language :: Python :: 3.11',
- + 'Programming Language :: Python :: 3.12',
- 'Programming Language :: Python :: Implementation :: CPython',
- ],
- )
- --- a/tox.ini
- +++ b/tox.ini
- @@ -8,6 +8,7 @@
- py39,
- py310,
- py311,
- + py312,
- mypy
-
- [testenv]
|