Pipfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [dev-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 = {version = "3.4"}
  15. # black requires python>=3.6
  16. # https://github.com/psf/black/commit/e74117f172e29e8a980e2c9de929ad50d3769150#diff-2eeaed663bd0d25b7e608891384b7298R51
  17. black = {version = "==19.10b0", markers="python_version >= '3.6'"}
  18. mypy = "*"
  19. # workaround https://github.com/pytest-dev/pytest/issues/3953
  20. pathlib2 = {version = "*", markers="python_version < '3.6'"}
  21. pylint = "*"
  22. pylint-import-requirements = "*"
  23. pytest = "*"
  24. # zipp v2.0.0 dropped support for python3.5
  25. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  26. zipp = "<2"
  27. # isort v5 dropped support for python3.5
  28. isort = "<5"
  29. [requires]
  30. python_version = "3"
  31. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile