Pipfile 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. # python<3.11 compatibility
  24. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  25. # > from exceptiongroup import BaseExceptionGroup
  26. # > ModuleNotFoundError: No module named 'exceptiongroup'
  27. exceptiongroup = {markers = "python_version < '3.11'"}
  28. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  29. # > import tomli as tomllib
  30. # > ModuleNotFoundError: No module named 'tomli'
  31. tomli = {markers = "python_version < '3.11'"}
  32. # remove `"markers": "python_version >= '3.11'"` to workaround:
  33. # > File "[...]/lib/python3.7/site-packages/pylint/lint/parallel.py", line 13, in <module>
  34. # > import dill
  35. # > ModuleNotFoundError: No module named 'dill'
  36. dill = {markers = "python_version >= '0'"}
  37. [requires]
  38. python_version = "3"
  39. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile