mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 23:27:49 +01:00
977d56ab43
* Bump mypy from 0.950 to 0.960 Bumps [mypy](https://github.com/python/mypy) from 0.950 to 0.960. - [Release notes](https://github.com/python/mypy/releases) - [Commits](https://github.com/python/mypy/compare/v0.950...v0.960) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * update pre-commit as well * fix type hint for CIRHandler.collect_additional_context Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hinrich Mahler <22366557+Bibo-Joshi@users.noreply.github.com> Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
19 lines
550 B
Text
19 lines
550 B
Text
# cryptography is an optional dependency, but running the tests properly requires it
|
|
cryptography!=3.4,!=3.4.1,!=3.4.2,!=3.4.3
|
|
|
|
pre-commit
|
|
# Make sure that the versions specified here match the pre-commit settings!
|
|
black==22.3.0
|
|
flake8==4.0.1
|
|
pylint==2.13.9
|
|
mypy==0.960
|
|
pyupgrade==2.32.1
|
|
isort==5.10.1
|
|
|
|
pytest==7.1.2
|
|
pytest-asyncio==0.18.3
|
|
pytest-timeout==2.1.0 # used to timeout tests
|
|
|
|
flaky # Used for flaky tests (flaky decorator)
|
|
beautifulsoup4 # used in test_official for parsing tg docs
|
|
wheel # required for building the wheels for releases
|