Skip to content

Commit

Permalink
Fix conda deploy (#307)
Browse files Browse the repository at this point in the history
* Fix conda deploy
  • Loading branch information
benjello authored Oct 22, 2024
1 parent 2c1a336 commit 4f6f738
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ requirements:
# PyPI 'tables' library is named 'pytables' for conda
- {{ req.replace('tables', 'pytables') }}
{% else %}
- {{ req }}
- {{ req | replace(" ","")}}
{% endif %}
{% endfor %}

Expand Down
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# Changelog

### 2.2.3 [#304](https://github.com/openfisca/openfisca-survey-manager/pull/304)
### 2.2.5 [#305](https://github.com/openfisca/openfisca-survey-manager/pull/305)

* Minor change.
- Add docstrings and types to some tests.

### 2.2.2 [#297](https://github.com/openfisca/openfisca-survey-manager/pull/297)
### 2.2.4 [#304](https://github.com/openfisca/openfisca-survey-manager/pull/304)

* Minor change.
- Add docstrings and types to some tests.

### 2.2.3 [#297](https://github.com/openfisca/openfisca-survey-manager/pull/297)

* Minor change.
- Update configarser to 8.0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

setup(
name = 'OpenFisca-Survey-Manager',
version = '2.2.4',
version = '2.2.5',
author = 'OpenFisca Team',
author_email = '[email protected]',
classifiers = [classifier for classifier in classifiers.split('\n') if classifier],
Expand Down

0 comments on commit 4f6f738

Please sign in to comment.