Pipfile 1.9 KB

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