-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New version for src workchain (#300)
Fix the issue that `QeAppWorkChain` is not updated with the QeApp. We are now maintaining `setup.py` of the `QeAppWorkChain` in the `src/__init__.py` separated from the QeApp PyPI package. Every time the QeApp is released, it is supposed to bump the QE workchain version so it can be updated with the installation. The bug is the version of the workchain is hardcoded to `v1.0` and updating the qeApp will not update the workchain in the end. It is fixed by having the workchain version synchronize with the qeApp version. It uses the `bumpver` tool to accomplish this.
- Loading branch information
Showing
4 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -394,4 +394,4 @@ def on_terminated(self): | |
) | ||
|
||
|
||
__version__ = "1.0" | ||
__version__ = "22.9.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters