Skip to content

Commit

Permalink
Merge pull request #214 from SINTEF/ci/update-dependencies
Browse files Browse the repository at this point in the history
[Auto-generated] Update dependencies
  • Loading branch information
CasperWA authored Nov 17, 2023
2 parents 67d5ac4 + 81ba7f6 commit c590c30
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ repos:
# Black is a code style and formatter
# It works on files in-place
- repo: https://github.com/ambv/black
rev: 23.10.1
rev: 23.11.0
hooks:
- id: black

Expand All @@ -49,7 +49,7 @@ repos:
# The project's documentation can be found at:
# https://mypy.readthedocs.io/en/stable/index.html
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.6.1
rev: v1.7.0
hooks:
- id: mypy

Expand Down
13 changes: 8 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,27 @@ dynamic = ["version", "description"]
dependencies = [
"invoke ~=2.2",
"packaging ~=23.2",
"tomlkit ~=0.12.1",
"tomlkit ~=0.12.3",
]

[project.optional-dependencies]
docs = [
"mike ~=1.1",
"mike ~=2.0",
"mkdocs ~=1.5",
"mkdocs-awesome-pages-plugin ~=2.9",
"mkdocs-material ~=9.2",
"mkdocstrings[python-legacy] ~=0.22.0",
"mkdocstrings[python-legacy] ~=0.22.0; python_version < '3.8'",
"mkdocstrings[python-legacy] ~=0.24.0; python_version >= '3.8'",
]
testing = [
"pytest ~=7.4",
"pytest-cov ~=4.1",
]
dev = [
"pre-commit ~=2.21",
"pylint ~=2.13",
"pre-commit ~=2.21; python_version < '3.8'",
"pre-commit ~=3.5; python_version >= '3.8'",
"pylint ~=2.13; python_version < '3.8'",
"pylint ~=3.0; python_version >= '3.8'",
"ci-cd[docs,testing]",
]

Expand Down

0 comments on commit c590c30

Please sign in to comment.