Skip to content

Commit

Permalink
chore: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bonjourmauko committed Oct 24, 2024
1 parent cd6ba49 commit 1219767
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 7 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ jobs:
test:
runs-on: ubuntu-24.04
needs: [build]
strategy:
matrix:
python: [3.9.x, 3.10.x, 3.11.x, 3.12.x, 3.13.x]

steps:
- name: Checkout
Expand All @@ -102,10 +105,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9.20
python-version: ${{ matrix.python }}

- name: Test python files
run: tox -r -e py39
run: tox -r -e py

dist:
runs-on: ubuntu-24.04
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### 2.0.6 - [#64](https://github.com/openfisca/extension-template/pull/64)

- Minor change.
- Impacted areas: `pyproject.toml`
- Details:
- Include tests on distribution for integration testing

### 2.0.5 - [#58](https://github.com/openfisca/extension-template/pull/58)

- Technical Changes
Expand Down
14 changes: 12 additions & 2 deletions poetry.lock

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

8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = [ "poetry-core>=1.7" ]

[tool.poetry]
name = "openfisca-extension_template"
version = "2.0.5"
version = "2.0.6"
description = "An OpenFisca extension that adds some variables to an already-existing tax and benefit system."
license = "AGPL-3.0-only"
authors = [ "OpenFisca Team <contact@openfisca.org>" ]
Expand All @@ -22,13 +22,15 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Information Analysis",
]
packages = [ { include = "openfisca_extension_template", from = "src" } ]
include = [ { path = "tests/*", format = [ "sdist", "wheel" ] } ]

[tool.poetry.dependencies]
python = "~3.9 || ~3.10 || ~3.11"
python = "~3.9 || ~3.10 || ~3.11 || ~3.12 || ~3.13"
openfisca-country_template = ">=7.1.8"
codespell = { version = "^2.3.0", optional = true }
isort = { version = "^5.13.2", optional = true }
Expand Down Expand Up @@ -116,7 +118,7 @@ python_files = "**/*.py"

[tool.tox]
requires = [ "tox>=4.20" ]
env_list = [ "py39", "py310", "py311", "dist" ]
env_list = [ "py39", "py310", "py311", "py312", "py313", "dist" ]

[tool.tox.env_run_base]
commands = [
Expand Down

0 comments on commit 1219767

Please sign in to comment.