1
0

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

1234567891011121314151617181920212223242526272829303132333435363738
  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. Forwarded: not-needed
  6. --- a/.travis.yml
  7. +++ b/.travis.yml
  8. @@ -9,6 +9,8 @@
  9. - "3.7"
  10. - "3.8"
  11. - "3.9"
  12. + - "3.10"
  13. + - "3.11"
  14. install:
  15. - pip install coverage coveralls codecov
  16. --- a/setup.py
  17. +++ b/setup.py
  18. @@ -39,6 +39,8 @@
  19. 'Programming Language :: Python :: 3.7',
  20. 'Programming Language :: Python :: 3.8',
  21. 'Programming Language :: Python :: 3.9',
  22. + 'Programming Language :: Python :: 3.10',
  23. + 'Programming Language :: Python :: 3.11',
  24. 'Programming Language :: Python :: Implementation :: CPython',
  25. ],
  26. )
  27. --- a/tox.ini
  28. +++ b/tox.ini
  29. @@ -7,6 +7,7 @@
  30. py38,
  31. py39,
  32. py310,
  33. + py311,
  34. mypy
  35. [testenv]