1
0

0.4.27-17-g0cc3cf8.chore-python-add-python-3-12-in-test-matrix.patch 874 B

123456789101112131415161718192021222324252627282930313233343536
  1. Subject: Chore(python): add Python 3.12 in test matrix
  2. Origin: upstream, commit 0.4.27-17-g0cc3cf8 <https://github.com/ahupp/python-magic/commit/0.4.27-17-g0cc3cf8>
  3. Author: Stevie <stevie.gayet@backmarket.com>
  4. Date: Sun Aug 6 00:13:22 2023 +0200
  5. Forwarded: not-needed
  6. --- a/.travis.yml
  7. +++ b/.travis.yml
  8. @@ -11,6 +11,7 @@
  9. - "3.9"
  10. - "3.10"
  11. - "3.11"
  12. + - "3.12"
  13. install:
  14. - pip install coverage coveralls codecov
  15. --- a/setup.py
  16. +++ b/setup.py
  17. @@ -41,6 +41,7 @@
  18. 'Programming Language :: Python :: 3.9',
  19. 'Programming Language :: Python :: 3.10',
  20. 'Programming Language :: Python :: 3.11',
  21. + 'Programming Language :: Python :: 3.12',
  22. 'Programming Language :: Python :: Implementation :: CPython',
  23. ],
  24. )
  25. --- a/tox.ini
  26. +++ b/tox.ini
  27. @@ -8,6 +8,7 @@
  28. py39,
  29. py310,
  30. py311,
  31. + py312,
  32. mypy
  33. [testenv]