Pipfile 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.10 compatibility
  25. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  26. # > from typing_extensions import Final, NoReturn
  27. # > ModuleNotFoundError: No module named 'typing_extensions'
  28. typing-extensions = {markers = ""}
  29. # python<3.11 compatibility
  30. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  31. # > from exceptiongroup import BaseExceptionGroup
  32. # > ModuleNotFoundError: No module named 'exceptiongroup'
  33. exceptiongroup = {markers = "python_version < '3.11'"}
  34. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  35. # > import tomli as tomllib
  36. # > ModuleNotFoundError: No module named 'tomli'
  37. tomli = {markers = "python_version < '3.11'"}
  38. # > File "[...]/lib/python3.10/site-packages/astroid/decorators.py", line 16, in <module>
  39. # > import wrapt
  40. # > ModuleNotFoundError: No module named 'wrapt'
  41. wrapt = "*"
  42. # remove `"markers": "python_version >= '3.11'"` to workaround:
  43. # > File "[...]/lib/python3.7/site-packages/pylint/lint/parallel.py", line 13, in <module>
  44. # > import dill
  45. # > ModuleNotFoundError: No module named 'dill'
  46. dill = {markers = "python_version >= '0'"}
  47. [requires]
  48. python_version = "3"
  49. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile