Skip to content
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

### 35.8.5 [#1137](https://github.com/openfisca/openfisca-core/pull/1137)

#### Technical changes

- Fix pylint dependency in fresh editable installations
- Ignore pytest requirement, used to collect test cases, if it is not yet installed.

### 35.8.4 [#1131](https://github.com/openfisca/openfisca-core/pull/1131)

#### Technical changes
Expand Down
2 changes: 1 addition & 1 deletion openfisca_tasks/install.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
install:
@$(call print_help,$@:)
@pip install --upgrade pip twine wheel
@pip install --editable .[dev] --upgrade --use-deprecated=legacy-resolver
@pip install --editable ".[dev]" --upgrade --use-deprecated=legacy-resolver

## Uninstall project dependencies.
uninstall:
Expand Down
2 changes: 1 addition & 1 deletion openfisca_tasks/test_code.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ test-code: test-core test-country test-extension
@$(call print_pass,$@:)

## Run openfisca-core tests.
test-core: $(shell pytest --quiet --quiet --collect-only | cut -f 1 -d ":")
test-core: $(shell pytest --quiet --quiet --collect-only 2> /dev/null | cut -f 1 -d ":")
@$(call print_help,$@:)
@PYTEST_ADDOPTS="$${PYTEST_ADDOPTS} ${pytest_args}" \
coverage run -m \
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
'autopep8 >= 1.4.0, < 1.6.0',
'coverage == 6.0.2',
'darglint == 1.8.0',
'flake8 >= 3.9.0, < 4.0.0',
'flake8 >= 4.0.0, < 4.1.0',
'flake8-bugbear >= 19.3.0, < 20.0.0',
'flake8-docstrings == 1.6.0',
'flake8-print >= 3.1.0, < 4.0.0',
Expand All @@ -47,7 +47,7 @@

setup(
name = 'OpenFisca-Core',
version = '35.8.4',
version = '35.8.5',
author = 'OpenFisca Team',
author_email = '[email protected]',
classifiers = [
Expand Down