Skip to content

Commit

Permalink
bump dependencies (#72)
Browse files Browse the repository at this point in the history
* bump jsonc version

* bump Pycord version

* bump emoji version

* bump SQLAlchemy version

* bump alembic version

* bump pre-commit-hooks version

* bump black version

* bump flake8 version
  • Loading branch information
solaluset authored Sep 22, 2023
1 parent 1b8f61f commit 9453443
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
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
- id: check-yaml
- 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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion musicbot/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9453443

Please sign in to comment.