Pipfile 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [[source]]
  2. name = "pypi"
  3. url = "https://pypi.org/simple"
  4. verify_ssl = true
  5. [packages]
  6. location-guessing-game-telegram-bot = {path = ".", editable = true}
  7. # apscheduler==3.6.3 uses pkg_resources from setuptools;
  8. # setuptools>=82 removed pkg_resources
  9. # > E ModuleNotFoundError: No module named 'pkg_resources'
  10. setuptools = "<82"
  11. [dev-packages]
  12. black = "*"
  13. # pylint>=4 requires dill on all python versions (>=0.2 on py<3.11, >=0.3.6 on py>=3.11)
  14. # but pipenv only resolves the dill requirement matching the lock-generation python version,
  15. # leaving dill uninstalled on the other versions
  16. dill = "*"
  17. mypy = "*"
  18. # mypy requires typing_extensions on all python versions
  19. # but pipenv only resolves the requirement matching the lock-generation python version,
  20. # leaving typing_extensions uninstalled on the other versions
  21. typing_extensions = "*"
  22. pylint = "*"
  23. pytest = "*"
  24. pytest-cov = "*"
  25. # > tests/conftest.py:24: in <module>
  26. # > from location_guessing_game_telegram_bot import _Photo
  27. # > location_guessing_game_telegram_bot/__init__.py:30: in <module>
  28. # > import telegram.ext
  29. # > …/site-packages/telegram/ext/__init__.py:30: in <module>
  30. # > from .jobqueue import JobQueue, Job
  31. # > …/site-packages/telegram/ext/jobqueue.py:26: in <module>
  32. # > from apscheduler.events import EVENT_JOB_ERROR, EVENT_JOB_EXECUTED, JobEvent
  33. # > …/site-packages/apscheduler/__init__.py:1: in <module>
  34. # > from pkg_resources import get_distribution, DistributionNotFound
  35. # > E ModuleNotFoundError: No module named 'pkg_resources'
  36. # python-telegram-bot==13.15 uses urllib3 in telegram/utils/request.py
  37. # but does not declare it as a dependency
  38. # > E ModuleNotFoundError: No module named 'urllib3'
  39. # urllib3>=2 removed urllib3.contrib.appengine used by python-telegram-bot==13.15
  40. # > E ModuleNotFoundError: No module named 'urllib3.contrib.appengine'
  41. urllib3 = "<2"
  42. # python-telegram-bot==13.15 uses imghdr in telegram/files/inputfile.py;
  43. # imghdr was removed from the standard library in python3.13 (PEP 594)
  44. standard-imghdr = "*"
  45. [requires]
  46. python_version = "3"
  47. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile