Skip to content

Commit f3204f4

Browse files
authored
Update minimal Core version
Update Core dependency to require a version that can parse `pyproject.toml` Use version specifiers compatible with Conda
2 parents 717800a + 823869c commit f3204f4

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
### 7.1.1 [#146](https://github.com/openfisca/country-template/pull/146)
4+
5+
* Technical improvement
6+
* Details:
7+
- Update minimal Core dependency to require a version that can parse `pyproject.toml` (see https://github.com/openfisca/openfisca-core/pull/1209)
8+
- Use version specifiers compatible with Conda packaging
9+
310
## 7.1.0 [#143](https://github.com/openfisca/country-template/pull/143)
411

512
* Technical improvement

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openfisca-country_template"
3-
version = "7.1.0"
3+
version = "7.1.1"
44
description = "OpenFisca Rules as Code model for Country-Template."
55
readme = "README.md"
66
keywords = ["microsimulation", "tax", "benefit", "rac", "rules-as-code"]
@@ -14,9 +14,9 @@ classifiers = [
1414
"Programming Language :: Python :: 3.9",
1515
"Topic :: Scientific/Engineering :: Information Analysis",
1616
]
17-
requires-python = ">= 3.9"
17+
requires-python = ">=3.9"
1818
dependencies = [
19-
"openfisca-core[web-api] >= 41.0.0, < 42.0.0"
19+
"openfisca-core[web-api] >=41.4.5, <42.0.0"
2020
]
2121

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

2929
[project.optional-dependencies]
3030
dev = [
31-
"autopep8 >= 2.0.4",
32-
"flake8 >= 7.0.0",
33-
"isort >= 5.13.2",
34-
"pylint >= 3.1.0",
35-
"pyupgrade >= 3.15.1",
36-
"yamllint >= 1.35.1"
31+
"autopep8 >=2.0.4",
32+
"flake8 >=7.0.0",
33+
"isort >=5.13.2",
34+
"pylint >=3.1.0",
35+
"pyupgrade >=3.15.1",
36+
"yamllint >=1.35.1"
3737
]
3838

3939
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)