123456789101112131415161718192021222324252627282930313233 |
- [[source]]
- url = "https://pypi.org/simple"
- verify_ssl = true
- name = "pypi"
- [packages]
- systemctl-mqtt = {editable = true,path = "."}
- # > ImportError: [...]/python3.10/site-packages/gi/_gi.cpython-310-x86_64-linux-gnu.so:
- # . undefined symbol: _PyUnicode_AsStringAndSize
- PyGObject = "!=3.30.5"
- [dev-packages]
- black = "*"
- mypy = "*"
- pylint = "*"
- # >=2.0.3 to skip PyGObject's custom loader & fix broken wheel
- pylint-import-requirements = ">=2.0.3"
- pytest = "*"
- pytest-cov = "*"
- # 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 = "*"
- # mypy on python<3.8
- typed-ast = {markers = "python_version < '3.8'"}
- [requires]
- python_version = "3"
- # Pipfile syntax: https://github.com/pypa/pipfile#pipfile
|