Skip to content

Commit 5c9843c

Browse files
committed
Update to v5.2.1
1 parent 573de28 commit 5c9843c

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,16 @@ jobs:
6868
name: source-distribution
6969
path: dist/*.tar.gz
7070

71-
merge:
71+
merge_artifacts:
72+
name: Merge Artifacts
7273
needs: [build_wheels, build_sdist]
7374
runs-on: ubuntu-latest
7475
steps:
7576
- name: Merge Artifacts
7677
uses: actions/upload-artifact/merge@v4
7778

7879
upload_pypi:
79-
needs: [build_wheels, build_sdist, merge]
80+
needs: [build_wheels, build_sdist, merge_artifacts]
8081
runs-on: ubuntu-latest
8182
if: github.event.inputs.upload_to_pypi == 'true'
8283
steps:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
### Changed
77
### Removed
88

9-
## 5.2.0 - 2024.10.29
9+
## 5.2.1 - 2024.10.29
1010
### Added
1111
- Expanded Statistics class to more problems.
1212
- Created Statistics class

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109

110110
setup(
111111
name="PySCIPOpt",
112-
version="5.2.0",
112+
version="5.2.1",
113113
description="Python interface and modeling environment for SCIP",
114114
long_description=long_description,
115115
long_description_content_type="text/markdown",

src/pyscipopt/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '5.2.0'
1+
__version__ = '5.2.1'

0 commit comments

Comments
 (0)