Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update minimal Core version #146

Merged
merged 3 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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