1
0

0.4.27-12-gc7642f0.chore-tests-add-python-3-10-and-3-11-in-ci-runs-tox-trove-classifier-284.patch 962 B

12345678910111213141516171819202122232425262728293031323334353637
  1. Subject: Chore(tests): add Python 3.10 and 3.11 in CI runs/tox/trove classifier (#284)
  2. Origin: upstream, commit 0.4.27-12-gc7642f0 <https://github.com/ahupp/python-magic/commit/0.4.27-12-gc7642f0>
  3. Author: Stevie Gayet <87695919+stegayet@users.noreply.github.com>
  4. Date: Mon Jan 23 16:06:24 2023 +0100
  5. --- a/.travis.yml
  6. +++ b/.travis.yml
  7. @@ -9,6 +9,8 @@
  8. - "3.7"
  9. - "3.8"
  10. - "3.9"
  11. + - "3.10"
  12. + - "3.11"
  13. install:
  14. - pip install coverage coveralls codecov
  15. --- a/setup.py
  16. +++ b/setup.py
  17. @@ -39,6 +39,8 @@
  18. 'Programming Language :: Python :: 3.7',
  19. 'Programming Language :: Python :: 3.8',
  20. 'Programming Language :: Python :: 3.9',
  21. + 'Programming Language :: Python :: 3.10',
  22. + 'Programming Language :: Python :: 3.11',
  23. 'Programming Language :: Python :: Implementation :: CPython',
  24. ],
  25. )
  26. --- a/tox.ini
  27. +++ b/tox.ini
  28. @@ -7,6 +7,7 @@
  29. py38,
  30. py39,
  31. py310,
  32. + py311,
  33. mypy
  34. [testenv]