1
0

0.4.27-6-gea2150d.add-python-3-10-to-tox-environment-list.patch 565 B

123456789101112131415161718192021222324252627
  1. Subject: Add python 3.10 to tox environment list
  2. Origin: upstream, commit 0.4.27-6-gea2150d <https://github.com/ahupp/python-magic/commit/0.4.27-6-gea2150d>
  3. Author: Adam Hupp <adam@hupp.org>
  4. Date: Mon Oct 24 08:11:21 2022 -0700
  5. --- a/tox.ini
  6. +++ b/tox.ini
  7. @@ -7,16 +7,17 @@
  8. py37,
  9. py38,
  10. py39,
  11. + py310,
  12. coverage-report,
  13. mypy
  14. [testenv]
  15. commands =
  16. - coverage run -m pytest
  17. + coverage run -m pytest
  18. setenv =
  19. COVERAGE_FILE=.coverage.{envname}
  20. - LC_ALL=en_US.UTF-8
  21. + LC_ALL=en_US.UTF-8
  22. deps =
  23. .[test]
  24. coverage