Skip to content

Commit

Permalink
feat: update base version
Browse files Browse the repository at this point in the history
  • Loading branch information
geronimo-iia committed Aug 25, 2024
1 parent 29ec21f commit 2c1c92a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions {{cookiecutter.github_repo}}/.github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
python-version: [{{cookiecutter.python_major_version}}.{{cookiecutter.python_minor_version}}]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python {{ '${{ matrix.python-version }}' }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: {{ '${{ matrix.python-version }}' }}
- name: Install and configure Poetry
Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.github_repo}}/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
python-version: [{{cookiecutter.python_major_version}}.{{cookiecutter.python_minor_version}}]
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python {{ '${{ matrix.python-version }}' }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: {{ '${{ matrix.python-version }}' }}
- name: Install and configure Poetry
Expand Down
14 changes: 7 additions & 7 deletions {{cookiecutter.github_repo}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,26 +33,26 @@ package-mode = false
python = ">={{cookiecutter.python_major_version}}.{{cookiecutter.python_minor_version}},<4"

[tool.poetry.group.dev.dependencies]
black = "24.3.0" # The uncompromising code formatter.
black = "24.4.2" # The uncompromising code formatter.
isort = "5.13.2" #A Python utility / library to sort Python imports.
ruff = "^0.3.3"
ruff = "^0.5.5"
pyright = "^1.1.354"

# Unit Testing
pytest = "^8" # pytest: simple powerful testing with Python
pytest-cov = "^4" # Pytest plugin for measuring coverage.
pytest-mock = "^3"
xdoctest = "^1.1.3" # A rewrite of the builtin doctest module
pytest-mock = "^5"
xdoctest = "^1.1.5" # A rewrite of the builtin doctest module
coverage = { version = "*", extras = ["toml"] }

[tool.poetry.group.docs]
optional = true

[tool.poetry.group.docs.dependencies]
mkdocs = { extras = ["markdown-include"], version = "^1.5.3" }
mkdocstrings = { extras = ["python"], version = "^0.24.0" }
mkdocs-material = "^9.5.14"
mkdocs-include-markdown-plugin = "^6.0.4"
mkdocstrings = { extras = ["python"], version = "^0.25.2" }
mkdocs-material = "^9.5.18"
mkdocs-include-markdown-plugin = "^6.2.1"


[tool.black]
Expand Down

0 comments on commit 2c1c92a

Please sign in to comment.