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

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