Pipfile 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. location-guessing-game-telegram-bot = {path = ".", editable = true}
  7. [dev-packages]
  8. black = "*"
  9. mypy = "*"
  10. pylint = "*"
  11. pylint-import-requirements = "*"
  12. pytest = "*"
  13. pytest-cov = "*"
  14. # python3.10 compatibility
  15. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  16. # > from typing_extensions import Final, NoReturn
  17. # > ModuleNotFoundError: No module named 'typing_extensions'
  18. typing_extensions = {version = "*", markers = ""}
  19. # mypy on python<3.8
  20. typed-ast = {markers = "python_version < '3.8'"}
  21. # python<=3.8 compatibility
  22. # > [...]/python3.8/site-packages/telegram/ext/jobqueue.py:27: in <module>
  23. # > from apscheduler.schedulers.background import BackgroundScheduler
  24. # > [...]
  25. # > [...]/python3.8/site-packages/tzlocal/unix.py:6: in <module>
  26. # > import pytz_deprecation_shim as pds
  27. # > [...]
  28. # > [...]/python3.8/site-packages/pytz_deprecation_shim/_compat_py3.py:7: in <module>
  29. # > from backports import zoneinfo
  30. # > E ModuleNotFoundError: No module named 'backports'
  31. # > Error: Process completed with exit code 4.
  32. "backports.zoneinfo" = {version = "*", markers = "python_version <= '3.8'"}
  33. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  34. # > from exceptiongroup import BaseExceptionGroup
  35. # > ModuleNotFoundError: No module named 'exceptiongroup'
  36. exceptiongroup = {markers = "python_version < '3.11'"}
  37. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  38. # > import tomli as tomllib
  39. # > ModuleNotFoundError: No module named 'tomli'
  40. tomli = {markers = "python_version < '3.11'"}
  41. # > File "[...]/lib/python3.10/site-packages/astroid/decorators.py", line 16, in <module>
  42. # > import wrapt
  43. # > ModuleNotFoundError: No module named 'wrapt'
  44. wrapt = "*"
  45. # remove `"markers": "python_version >= '3.11'"` to workaround:
  46. # > File "[...]/lib/python3.7/site-packages/pylint/lint/parallel.py", line 13, in <module>
  47. # > import dill
  48. # > ModuleNotFoundError: No module named 'dill'
  49. dill = {markers = "python_version >= '0'"}
  50. [requires]
  51. python_version = "3"
  52. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile