Skip to content

Commit

Permalink
Merge pull request #540 from fedejaure/feature-update-deps
Browse files Browse the repository at this point in the history
Feature update deps
  • Loading branch information
fedejaure authored Nov 18, 2023
2 parents 87a25d6 + 5409356 commit fc492b5
Show file tree
Hide file tree
Showing 8 changed files with 513 additions and 459 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-toml
exclude: "^{{cookiecutter.project_name}}/"
Expand All @@ -19,7 +19,7 @@ repos:
- id: isort
exclude: "^{{cookiecutter.project_name}}/"
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.11.0
hooks:
- id: black
exclude: "^{{cookiecutter.project_name}}/"
Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Changelog
3# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
Expand All @@ -11,6 +11,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- actions/checkout from `v3.5.2` to `v4.1.1`.
- peter-evans/create-pull-request from `v5.0.1` to `v5.0.2`.
- pypa/gh-action-pypi-publish from from `v1.4.2` to `v1.8.10`.
- pre-commit-hooks from `v4.4.0` to `v4.5.0`.
- sphinx from `^7.0.1` to `^7.1.2`.
- invoke from `^2.1.2` to `^2.2.0`.
- pre-commit from `^3.3.2` to `^3.5.0`.
- black from `^23.3.0` to `^23.11.0`.
- mypy from `^1.3.0` to `^1.7.0`.
- safety from `^2.4.0b1` to `^2.4.0b2`.
- pytest from `^7.3.1` to `^7.4.3`.
- xdoctest from `^1.1.1` to `^1.1.2`.
- coverage from `^7.2.6` to `^7.3.2`.
- click from `^8.1.3` to `^8.1.7`.
- flake8-builtins from `^2.1.0` to `^2.2.0`.

### Fixed
- readthedocs config.
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sphinx==7.0.1
sphinx==7.1.2
recommonmark==0.7.1
906 changes: 474 additions & 432 deletions poetry.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,24 +34,24 @@ python = "<3.12,>=3.8"
cookiecutter = "^2.4.0"

[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.2"
invoke = "^2.1.2"
pre-commit = "^3.5.0"
invoke = "^2.2.0"
bump2version = "^1.0.1"
watchdog = {version = "^3.0.0", extras = ["watchmedo"]}

[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
xdoctest = "^1.1.1"
pytest = "^7.4.3"
xdoctest = "^1.1.2"
pytest-cookies = "^0.7.0"

[tool.poetry.group.format.dependencies]
isort = "^5.12.0"
black = "^23.3.0"
black = "^23.11.0"

[tool.poetry.group.linters.dependencies]
flake8 = ">=4.0.1,<5.0.0"
flakeheaven = "^3.3.0"
flake8-builtins = "^2.1.0"
flake8-builtins = "^2.2.0"
flake8-blind-except = "^0.2.1"
flake8-logging-format = "^0.9.0"
flake8-bugbear = "^23.3.12"
Expand All @@ -62,13 +62,13 @@ flake8-broken-line = "^0.6.0"
darglint = "^1.8.1"

[tool.poetry.group.security.dependencies]
safety = "^2.4.0b1"
safety = "^2.4.0b2"

[tool.poetry.group.typing.dependencies]
mypy = "^1.3.0"
mypy = "^1.7.0"

[tool.poetry.group.docs.dependencies]
sphinx = "^7.0.1"
sphinx = "^7.1.2"
recommonmark = "^0.7.1"

[tool.flakeheaven]
Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.project_name}}/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-toml
- id: check-yaml
Expand All @@ -13,7 +13,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.11.0
hooks:
- id: black
- repo: local
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sphinx==7.0.1
sphinx==7.1.2
recommonmark==0.7.1
22 changes: 11 additions & 11 deletions {{cookiecutter.project_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,29 +49,29 @@ packages = [
[tool.poetry.dependencies]
python = "<3.12,>=3.8"
{% if cookiecutter.command_line_interface|lower == 'click' %}
click = "^8.1.3"
click = "^8.1.7"
{% endif %}

[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.2"
invoke = "^2.1.2"
pre-commit = "^3.5.0"
invoke = "^2.2.0"
bump2version = "^1.0.1"
watchdog = {version = "^3.0.0", extras = ["watchmedo"]}

[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
xdoctest = "^1.1.1"
coverage = {version = "^7.2.6", extras = ["toml"]}
pytest = "^7.4.3"
xdoctest = "^1.1.2"
coverage = {version = "^7.3.2", extras = ["toml"]}
pytest-cov = "^4.1.0"

[tool.poetry.group.format.dependencies]
isort = "^5.12.0"
black = "^23.3.0"
black = "^23.11.0"

[tool.poetry.group.linters.dependencies]
flake8 = ">=4.0.1,<5.0.0"
flakeheaven = "^3.3.0"
flake8-builtins = "^2.1.0"
flake8-builtins = "^2.2.0"
flake8-blind-except = "^0.2.1"
flake8-logging-format = "^0.9.0"
flake8-bugbear = "^23.3.12"
Expand All @@ -82,13 +82,13 @@ flake8-broken-line = "^0.6.0"
darglint = "^1.8.1"

[tool.poetry.group.security.dependencies]
safety = "^2.4.0b1"
safety = "^2.4.0b2"

[tool.poetry.group.typing.dependencies]
mypy = "^1.3.0"
mypy = "^1.7.0"

[tool.poetry.group.docs.dependencies]
sphinx = "^7.0.1"
sphinx = "^7.1.2"
recommonmark = "^0.7.1"

[tool.coverage.paths]
Expand Down

0 comments on commit fc492b5

Please sign in to comment.