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

Fix version number in the analysis config created by convert-spikes #44

Merged
merged 1 commit into from
May 23, 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
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
Changelog
=========

Version 0.11.2
--------------

Bug Fixes
~~~~~~~~~

- Fix version number in the analysis config created by ``blueetl convert-spikes``.


Version 0.11.1
--------------

Bug Fixes
~~~~~~~~~

- Revert raising an error if the env variable SHMDIR isn't set. Log a more detailed warning instead.


Expand Down
2 changes: 1 addition & 1 deletion src/blueetl/converters/convert_spikes.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def _write_analysis_config(path: Path, simulation_campaign_config_path: Path) ->
L.info("Writing %s", path)
simulation_campaign = str(relpath(simulation_campaign_config_path, path.parent))
analysis_config = {
"version": 3,
"version": 4,
"simulation_campaign": simulation_campaign,
"cache": {
"path": "analysis",
Expand Down
2 changes: 1 addition & 1 deletion src/blueetl/schemas/analysis_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type: object
properties:
version:
title: Version
description: Version number of the configuration, it should be set to ``2``.
description: Version number of the configuration.
type: integer
simulation_campaign:
title: Simulation Campaign
Expand Down