Pipfile 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. cc1101 = {editable = true,path = "."}
  7. # > $ cat /etc/issue
  8. # > Raspbian GNU/Linux 10 \n \l
  9. # > $ dpkg --status python3-spidev | grep Version
  10. # > Version: 20190221~182651-1
  11. # > $ python3 -c 'import spidev; print(spidev.__version__)'
  12. # > 3.4
  13. # https://pypi.org/project/spidev/3.4/
  14. spidev = "==3.4"
  15. [dev-packages]
  16. black = "*"
  17. # >=0.1.1 for https://github.com/blu3r4y/blinkcheck/pull/2
  18. blinkcheck = {version = ">=0.1.1", markers = "python_version >= '3.8'"}
  19. mypy = "*"
  20. pylint = "*"
  21. pylint-import-requirements = "*"
  22. pytest = "*"
  23. pytest-cov = "*"
  24. # python3.7 compatibility
  25. # https://github.com/PyCQA/isort/commit/47cedf3583f338e8ce9c906fc95c9fee6c57404d
  26. isort = "<5.12"
  27. # python3.10 compatibility
  28. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  29. # > from typing_extensions import Final, NoReturn
  30. # > ModuleNotFoundError: No module named 'typing_extensions'
  31. typing_extensions = {version = "*", markers = ""}
  32. # mypy on python<3.8
  33. typed-ast = {markers = "python_version < '3.8'"}
  34. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  35. # > from exceptiongroup import BaseExceptionGroup
  36. # > ModuleNotFoundError: No module named 'exceptiongroup'
  37. exceptiongroup = {markers = "python_version < '3.11'"}
  38. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  39. # > import tomli as tomllib
  40. # > ModuleNotFoundError: No module named 'tomli'
  41. tomli = {markers = "python_version < '3.11'"}
  42. # > File "[...]/lib/python3.10/site-packages/astroid/decorators.py", line 16, in <module>
  43. # > import wrapt
  44. # > ModuleNotFoundError: No module named 'wrapt'
  45. wrapt = "*"
  46. # remove `"markers": "python_version >= '3.11'"` to workaround:
  47. # > File "[...]/lib/python3.7/site-packages/pylint/lint/parallel.py", line 13, in <module>
  48. # > import dill
  49. # > ModuleNotFoundError: No module named 'dill'
  50. dill = {markers = "python_version >= '0'"}
  51. [requires]
  52. python_version = "3"
  53. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile