Skip to content

Commit

Permalink
Update minimal Core version
Browse files Browse the repository at this point in the history
Update Core dependency to require a version that can parse
`pyproject.toml`
Use version specifiers compatible with Conda
  • Loading branch information
MattiSG authored May 7, 2024
2 parents 717800a + 823869c commit f3204f4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### 7.1.1 [#146](https://github.com/openfisca/country-template/pull/146)

* Technical improvement
* Details:
- Update minimal Core dependency to require a version that can parse `pyproject.toml` (see https://github.com/openfisca/openfisca-core/pull/1209)
- Use version specifiers compatible with Conda packaging

## 7.1.0 [#143](https://github.com/openfisca/country-template/pull/143)

* Technical improvement
Expand Down
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "openfisca-country_template"
version = "7.1.0"
version = "7.1.1"
description = "OpenFisca Rules as Code model for Country-Template."
readme = "README.md"
keywords = ["microsimulation", "tax", "benefit", "rac", "rules-as-code"]
Expand All @@ -14,9 +14,9 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Information Analysis",
]
requires-python = ">= 3.9"
requires-python = ">=3.9"
dependencies = [
"openfisca-core[web-api] >= 41.0.0, < 42.0.0"
"openfisca-core[web-api] >=41.4.5, <42.0.0"
]

[project.urls]
Expand All @@ -28,12 +28,12 @@ Changelog = "https://github.com/openfisca/country-template/blob/main/CHANGELOG.m

[project.optional-dependencies]
dev = [
"autopep8 >= 2.0.4",
"flake8 >= 7.0.0",
"isort >= 5.13.2",
"pylint >= 3.1.0",
"pyupgrade >= 3.15.1",
"yamllint >= 1.35.1"
"autopep8 >=2.0.4",
"flake8 >=7.0.0",
"isort >=5.13.2",
"pylint >=3.1.0",
"pyupgrade >=3.15.1",
"yamllint >=1.35.1"
]

[tool.pytest.ini_options]
Expand Down

0 comments on commit f3204f4

Please sign in to comment.