update dependencies

This commit is contained in:
Dmitry Afanasyev 2024-02-10 01:09:23 +03:00
parent 26dd083fad
commit 521f7a1ffb
6 changed files with 403 additions and 333 deletions

View File

@ -1,9 +1,9 @@
{ {
"chrome": { "chrome": {
"default": "120.0", "default": "121.0",
"versions": { "versions": {
"120.0": { "121.0": {
"image": "selenoid/chrome:120.0", "image": "selenoid/chrome:121.0",
"port": "4444", "port": "4444",
"path": "/", "path": "/",
"tmpfs": { "tmpfs": {

View File

@ -16,7 +16,7 @@ networks:
services: services:
selenoid: selenoid:
image: "aerokube/selenoid:1.11.1" image: "aerokube/selenoid:1.11.2"
container_name: "transport_bot_selenoid" container_name: "transport_bot_selenoid"
hostname: "selenoid_host" hostname: "selenoid_host"
restart: unless-stopped restart: unless-stopped
@ -32,7 +32,7 @@ services:
- "4444" - "4444"
browser: browser:
image: "selenoid/chrome:120.0" image: "selenoid/chrome:121.0"
container_name: "transport_browser" container_name: "transport_browser"
bot: bot:

698
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@ authors = ["Dmitry Afanasyev <Balshbox@gmail.com>"]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.11" python = "^3.11"
aiogram = "^2.25" aiogram = "^2.25"
selenium = "^4.16" selenium = "^4.17"
httpx = "^0.26" httpx = "^0.26"
wget = "^3.2" wget = "^3.2"
loguru = "^0.7" loguru = "^0.7"
@ -20,43 +20,42 @@ Faker = "^18.3.0"
wheel = "^0.42" wheel = "^0.42"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
ipython = "^8.18" ipython = "^8.21"
pre-commit = "^3.6" pre-commit = "^3.6"
safety = "^2.3" safety = "^2.4.0b2"
pip-audit = "^2.6" pip-audit = "^2.7"
yamllint = "^1.33" yamllint = "^1.34"
tomlkit = "^0.12" tomlkit = "^0.12"
bandit = "^1.7" bandit = "^1.7"
aresponses = "^2.1" aresponses = "^2.1"
pyupgrade = "^3.15" pyupgrade = "^3.15"
isort = "^5.13" isort = "^5.13"
black = "^23.12" black = "^24.1"
mypy = "^1.8" mypy = "^1.8"
types-PyMySQL = "^1.0" types-PyMySQL = "^1.0"
types-python-dateutil = "^2.8" types-python-dateutil = "^2.8"
pytest = "^7.4" pytest = "^8.0"
pytest-asyncio = "^0.23" pytest-asyncio = "^0.23"
pytest-deadfixtures = "^2.2" pytest-deadfixtures = "^2.2"
pytest-testmon = "^2.1"
pytest-mock = "^3.12" pytest-mock = "^3.12"
pytest-cov = "^4.1" pytest-cov = "^4.1"
pytest-timeout = "^2.2" pytest-timeout = "^2.2"
pytest-sugar = "^0.9" pytest-sugar = "^1.0"
pytest-clarity = "^1.0" pytest-clarity = "^1.0"
pytest-env = "^1.1" pytest-env = "^1.1"
nest-asyncio = "^1.5" nest-asyncio = "^1.6"
autoflake = "^2.2" autoflake = "^2.2"
flake8 = "^6.1" flake8 = "^7.0"
flake8-logging-format = "^0.9" flake8-logging-format = "^0.9"
flake8-comprehensions = "^3.14" flake8-comprehensions = "^3.14"
flake8-eradicate = "^1.5" flake8-eradicate = "^1.5"
flake8-pytest-style = "^1.7" flake8-pytest-style = "^1.7"
flake8-aaa = "^0.17" flake8-aaa = "^0.17"
flake8-bugbear = "^23.12" flake8-bugbear = "^24.2"
flake8-debugger = "^4.1" flake8-debugger = "^4.1"
flake8-expression-complexity = "^0.0.11" flake8-expression-complexity = "^0.0.11"
flake8-fixme = "^1.1" flake8-fixme = "^1.1"

View File

@ -1,6 +1,7 @@
"""" """"
Dict data set for Telegram message types Dict data set for Telegram message types
""" """
from typing import NamedTuple from typing import NamedTuple

View File

@ -10,7 +10,7 @@ networks:
services: services:
test-selenoid: test-selenoid:
image: "aerokube/selenoid:1.11.1" image: "aerokube/selenoid:1.11.2"
container_name: "test_transport_bot_selenoid" container_name: "test_transport_bot_selenoid"
hostname: "selenoid_host" hostname: "selenoid_host"
restart: unless-stopped restart: unless-stopped
@ -26,7 +26,7 @@ services:
- "4444" - "4444"
test-browser: test-browser:
image: "selenoid/chrome:120.0" image: "selenoid/chrome:121.0"
container_name: "test_transport_bot_browser" container_name: "test_transport_bot_browser"
test-bot: test-bot: