diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c54a957b..908d5185 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v3.2.0 + rev: v4.4.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -8,13 +8,13 @@ repos: - id: check-added-large-files - repo: https://github.com/psf/black - rev: 23.3.0 + rev: 23.9.1 hooks: - id: black args: ["-l", "79"] - repo: https://github.com/pycqa/flake8 - rev: 6.0.0 + rev: 6.1.0 hooks: - id: flake8 @@ -28,7 +28,7 @@ repos: types: [json] require_serial: true additional_dependencies: &jsonc - - "json-with-comments==1.2.1" + - "json-with-comments==1.2.2" - id: update-dockerfile name: update-dockerfile diff --git a/config/pyproject.toml b/config/pyproject.toml index bcea57f0..1f5e2d06 100644 --- a/config/pyproject.toml +++ b/config/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "setuptools", "wheel", "tomli; python_version<'3.11'", - "json-with-comments==1.2.1", + "json-with-comments==1.2.2", ] [project] diff --git a/musicbot/utils.py b/musicbot/utils.py index 62e03c36..a715d2bf 100644 --- a/musicbot/utils.py +++ b/musicbot/utils.py @@ -57,7 +57,7 @@ def extract_ffmpeg_timestamp(version): def check_dependencies(): - assert pycord_version == "2.5.3", ( + assert pycord_version == "2.5.4", ( "you don't have necessary version of Pycord." " Please install the version specified in requirements.txt" ) diff --git a/requirements.txt b/requirements.txt index 43e16308..bad4c0fb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ -py-cord[voice] @ https://github.com/Krutyi-4el/pycord/archive/0d5816021403a667a330a5b7f4286348b2c21bf9.zip +py-cord[voice] @ https://github.com/Krutyi-4el/pycord/archive/8393a5379d2e1fe119f0fb0d8c297cda0d8c1f90.zip yt-dlp==2023.7.6 aiohttp==3.8.5 beautifulsoup4==4.12.2 spotipy==2.23.0 -emoji==2.7.0 -SQLAlchemy[asyncio]==2.0.19 -alembic==1.11.2 +emoji==2.8.0 +SQLAlchemy[asyncio]==2.0.21 +alembic==1.12.0 aioconsole==0.6.2 ./config