Skip to content

Commit 4591e29

Browse files
committed
prepare release v1.5.2
1 parent 538954e commit 4591e29

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.2b0
1+
1.5.2

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Changelog
22

3-
## Latest
4-
- [#159](https://jugit.fz-juelich.de/IBG-1/ModSim/hopsy/-/issues/159): Fix fork warning
3+
## v1.5.2
4+
- [#115](https://jugit.fz-juelich.de/IBG-1/ModSim/hopsy/-/issues/115): Improve initialization of custom PyProposals in MarkovChain
5+
- [#114](https://jugit.fz-juelich.de/IBG-1/ModSim/hopsy/-/issues/114): Disable inheriting from PyProposal and PyModel
56

67
## v1.5.1
78
- [#138](https://jugit.fz-juelich.de/IBG-1/ModSim/hopsy/-/issues/138): Ignore fixed dimensions when computing ESS & rhat

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -180,4 +180,3 @@ If you like `hopsy` and used it in your scientific work, please cite our [paper]
180180
## License
181181

182182
hopsy is licensed under the [MIT license](LICENSE).
183-

win_makewheels.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
conda activate py3.8
22
python -m pip install -r requirements-dev.txt
33
python -m pip uninstall --yes hopsy && python setup.py bdist_wheel
4-
python -m pip install --no-input --user dist/hopsy-1.5.0-cp38-cp38-win_amd64.whl --force-reinstall --no-deps
4+
python -m pip install --no-input --user dist/hopsy-1.5.2-cp38-cp38-win_amd64.whl --force-reinstall --no-deps
55
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
66
conda deactivate
77
conda activate py3.9 && python -m pip uninstall --yes hopsy
88
python -m pip install -r requirements-dev.txt
99
python setup.py bdist_wheel
10-
python -m pip install --no-input --user dist/hopsy1.5.0-cp39-cp39-win_amd64.whl --force-reinstall --no-deps
10+
python -m pip install --no-input --user dist/hopsy1.5.2-cp39-cp39-win_amd64.whl --force-reinstall --no-deps
1111
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
1212
conda deactivate
1313
conda activate py3.10
1414
python -m pip install -r requirements-dev.txt
1515
python -m pip uninstall --yes hopsy
1616
python setup.py bdist_wheel
17-
python -m pip install --no-input --user dist/hopsy-1.5.0-cp310-cp310-win_amd64.whl --force-reinstall --no-deps
17+
python -m pip install --no-input --user dist/hopsy-1.5.2-cp310-cp310-win_amd64.whl --force-reinstall --no-deps
1818
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
1919
conda deactivate
2020
conda activate py3.11
2121
python -m pip install -r requirements-dev.txt
2222
python -m pip uninstall --yes hopsy
2323
python setup.py bdist_wheel
24-
python -m pip install --no-input --user dist/hopsy-1.5.0-cp311-cp311-win_amd64.whl --force-reinstall --no-deps
24+
python -m pip install --no-input --user dist/hopsy-1.5.2-cp311-cp311-win_amd64.whl --force-reinstall --no-deps
2525
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
2626
conda deactivate
2727
conda activate py3.12
2828
python -m pip install -r requirements-dev.txt
2929
python -m pip uninstall --yes hopsy
3030
python setup.py bdist_wheel
31-
python -m pip install --no-input --user dist/hopsy-1.5.0-cp312-cp312-win_amd64.whl --force-reinstall --no-deps
31+
python -m pip install --no-input --user dist/hopsy-1.5.2-cp312-cp312-win_amd64.whl --force-reinstall --no-deps
3232
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
3333
conda deactivate

win_testwheels.sh

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ conda deactivate
66
conda activate py3.9
77
python --version
88
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
9+
python -m unittest tests
910
conda deactivate
1011
conda activate py3.10
1112
python --version

0 commit comments

Comments
 (0)