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
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
## v0.3.1
## v0.4.0

### 🐛 Bug fixes
### ‼️ Breaking changes

* `HyperQueueJobResource.accepts_default_mpiprocs_per_machine()` now returns `True`: with the deprecated `num_machines`/`num_mpiprocs_per_machine` resource keys, the computer's `default_mpiprocs_per_machine` is now honoured instead of silently falling back to a single CPU. Jobs that relied on that fallback on a computer with a default set will now request `num_machines * default_mpiprocs_per_machine` CPUs. [[#49](https://github.com/aiidateam/aiida-hyperqueue/pull/49)]
* Drop support for Python 3.9 and pyupgrade the code to 3.10 [[#50](https://github.com/aiidateam/aiida-hyperqueue/pull/50)]

### 🔧 Maintenance

* Drop support for Python 3.9 and pyupgrade the code to 3.10 [[#50](https://github.com/aiidateam/aiida-hyperqueue/pull/50)]
* Test Python 3.14 in CI [[#50](https://github.com/aiidateam/aiida-hyperqueue/pull/50)]
* Update pre-commit hooks [[#50](https://github.com/aiidateam/aiida-hyperqueue/pull/50)]

Expand Down
2 changes: 1 addition & 1 deletion aiida_hyperqueue/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
AiiDA plugin for the HyperQueue metascheduler
"""

__version__ = "0.3.1"
__version__ = "0.4.0"
Loading