From cf2a3b8353bfd3995a256ae8e1bd0ec92e92f16c Mon Sep 17 00:00:00 2001 From: OMEGARAZER <869111+OMEGARAZER@users.noreply.github.com> Date: Thu, 4 May 2023 22:54:27 -0400 Subject: [PATCH] Update versions --- .pre-commit-config.yaml | 6 +++--- bdfrx/__init__.py | 2 +- pyproject.toml | 11 ++++++----- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 09b8bbd..446212b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,20 +16,20 @@ repos: args: ["--preview"] - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: v0.0.262 + rev: v0.0.264 hooks: - id: ruff name: ruff args: ["--fixable=I","--fix"] - repo: https://github.com/dosisod/refurb - rev: v1.15.0 + rev: v1.16.0 hooks: - id: refurb name: refurb - repo: https://github.com/igorshubovych/markdownlint-cli - rev: v0.33.0 + rev: v0.34.0 hooks: - id: markdownlint name: markdownlint diff --git a/bdfrx/__init__.py b/bdfrx/__init__.py index 92192ee..68cdeee 100644 --- a/bdfrx/__init__.py +++ b/bdfrx/__init__.py @@ -1 +1 @@ -__version__ = "1.0.4" +__version__ = "1.0.5" diff --git a/pyproject.toml b/pyproject.toml index 57d1d88..c72734f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ dependencies = [ "click>=8.0.0", "praw>=7.2.0", "pyyaml>=5.4.1", - "requests>=2.28.2", + "requests>=2.30.0", "yt-dlp>=2023.3.4", ] dynamic = ["version"] @@ -40,10 +40,11 @@ package-data = {"bdfrx" = ["default_config.cfg", "bdfrx.db",]} [project.optional-dependencies] dev = [ - "black>=23.1.0", - "pre-commit>=3.0.4", - "pytest>=7.2.1", - "ruff>=0.0.262", + "black>=23.3.0", + "pre-commit>=3.3.1", + "pytest>=7.3.1", + "refurb>=1.16.0", + "ruff>=0.0.264", ] [project.urls]