Pipfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. acpi-backlight = {editable = true, path = "."}
  7. [dev-packages]
  8. black = "*"
  9. mypy = "*"
  10. pylint = "*"
  11. pytest = "*"
  12. pytest-cov = "*"
  13. # python<3.11 compatibility
  14. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  15. # > from exceptiongroup import BaseExceptionGroup
  16. # > ModuleNotFoundError: No module named 'exceptiongroup'
  17. exceptiongroup = {markers = "python_version < '3.11'"}
  18. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  19. # > import tomli as tomllib
  20. # > ModuleNotFoundError: No module named 'tomli'
  21. tomli = {markers = "python_version < '3.11'"}
  22. # remove `"markers": "python_version >= '3.11'"` to workaround:
  23. # > File "[...]/lib/python3.7/site-packages/pylint/lint/parallel.py", line 13, in <module>
  24. # > import dill
  25. # > ModuleNotFoundError: No module named 'dill'
  26. dill = {markers = "python_version >= '0'"}
  27. [requires]
  28. python_version = "3"
  29. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile