Skip to content

Commit

Permalink
chore: Update to 0.3.1 (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeacom authored Aug 10, 2024
1 parent 8d91974 commit 177f926
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 61 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ repos:

- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: 1ee2e387938ec90ec10a64f85fc0b4be527ade6a # frozen: v0.5.5
rev: ac97362543353002a47d6cae8918b25444d102df # frozen: v0.5.7
hooks:
- id: ruff
args: [ --fix, --exit-non-zero-on-fix ]

- repo: https://github.com/psf/black
rev: 3702ba224ecffbcec30af640c149f231d90aebdb # frozen: 24.4.2
rev: b965c2a5026f8ba399283ba3e01898b012853c79 # frozen: 24.8.0
hooks:
- id: black
language_version: python3.11
Expand Down
130 changes: 80 additions & 50 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "python-template-x"
version = "0.3.0"
version = "0.3.1"
description = "This is a python template."
authors = ["Mark Beacom <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -167,23 +167,23 @@ typer = {extras = ["all"], version = "^0.12.3"}
[tool.poetry.group.test.dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
coverage = "^7.6.0"
coverage = "^7.6.1"

[tool.poetry.group.dev.dependencies]
isort = {extras = ["toml"], version = "^5.13.2"}
black = "^24.4.2"
mypy = "^1.11.0"
debugpy = "^1.8.2"
ruff = "^0.5.5"
black = "^24.8.0"
mypy = "^1.11.1"
debugpy = "^1.8.5"
ruff = "^0.5.7"
poethepoet = "^0.27.0"

[tool.poetry.group.security.dependencies]
safety = "^3.2.4"
safety = "^3.2.5"
bandit = {extras = ["toml"], version = "^1.7.9"}

[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.0"
mkdocs-material = "^9.5.30"
mkdocs-material = "^9.5.31"
mkdocstrings = {extras = ["python"], version = "^0.25.2"}

[build-system]
Expand Down
2 changes: 1 addition & 1 deletion python_template/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

from __future__ import annotations

__version__: str = "0.3.0"
__version__: str = "0.3.1"

0 comments on commit 177f926

Please sign in to comment.