Pipfile 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. ical2vdir = {editable = true, path = "."}
  7. [dev-packages]
  8. black = "*"
  9. # >=0.1.1 for https://github.com/blu3r4y/blinkcheck/pull/2
  10. blinkcheck = {version = ">=0.1.1", markers = "python_version >= '3.8'"}
  11. mypy = "*"
  12. pylint = "*"
  13. pytest = "*"
  14. pytest-cov = "*"
  15. # python3.10 compatibility
  16. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  17. # > from typing_extensions import Final, NoReturn
  18. # > ModuleNotFoundError: No module named 'typing_extensions'
  19. typing-extensions = {markers = ""}
  20. # python<3.11 compatibility
  21. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  22. # > from exceptiongroup import BaseExceptionGroup
  23. # > ModuleNotFoundError: No module named 'exceptiongroup'
  24. exceptiongroup = {markers = "python_version < '3.11'"}
  25. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  26. # > import tomli as tomllib
  27. # > ModuleNotFoundError: No module named 'tomli'
  28. tomli = {markers = "python_version < '3.11'"}
  29. # > File "[...]/lib/python3.10/site-packages/astroid/decorators.py", line 16, in <module>
  30. # > import wrapt
  31. # > ModuleNotFoundError: No module named 'wrapt'
  32. wrapt = "*"
  33. # remove `"markers": "python_version >= '3.11'"` to workaround:
  34. # > File "[...]/lib/python3.7/site-packages/pylint/lint/parallel.py", line 13, in <module>
  35. # > import dill
  36. # > ModuleNotFoundError: No module named 'dill'
  37. dill = {markers = "python_version >= '0'"}
  38. [requires]
  39. python_version = "3"
  40. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile