123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- [[source]]
- url = "https://pypi.org/simple"
- verify_ssl = true
- name = "pypi"
- [packages]
- ical2vdir = {editable = true, path = "."}
- [dev-packages]
- black = "*"
- # >=0.1.1 for https://github.com/blu3r4y/blinkcheck/pull/2
- blinkcheck = {version = ">=0.1.1", markers = "python_version >= '3.8'"}
- mypy = "*"
- pylint = "*"
- pylint-import-requirements = "*"
- pytest = "*"
- pytest-cov = "*"
- # python3.7 compatibility
- # https://github.com/PyCQA/isort/commit/47cedf3583f338e8ce9c906fc95c9fee6c57404d
- isort = "<5.12"
- # python3.10 compatibility
- # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
- # > from typing_extensions import Final, NoReturn
- # > ModuleNotFoundError: No module named 'typing_extensions'
- typing-extensions = {markers = ""}
- # mypy on python<3.8
- typed-ast = {markers = "python_version < '3.8'"}
- # python<3.11 compatibility
- # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
- # > from exceptiongroup import BaseExceptionGroup
- # > ModuleNotFoundError: No module named 'exceptiongroup'
- exceptiongroup = {markers = "python_version < '3.11'"}
- # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
- # > import tomli as tomllib
- # > ModuleNotFoundError: No module named 'tomli'
- tomli = {markers = "python_version < '3.11'"}
- # > File "[...]/lib/python3.10/site-packages/astroid/decorators.py", line 16, in <module>
- # > import wrapt
- # > ModuleNotFoundError: No module named 'wrapt'
- wrapt = "*"
- # remove `"markers": "python_version >= '3.11'"` to workaround:
- # > File "[...]/lib/python3.7/site-packages/pylint/lint/parallel.py", line 13, in <module>
- # > import dill
- # > ModuleNotFoundError: No module named 'dill'
- dill = {markers = "python_version >= '0'"}
- [requires]
- python_version = "3"
- # Pipfile syntax: https://github.com/pypa/pipfile#pipfile
|