Skip to content

Commit

Permalink
Update to v5.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Opt-Mucca committed Oct 30, 2024
1 parent 573de28 commit 5c9843c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,16 @@ jobs:
name: source-distribution
path: dist/*.tar.gz

merge:
merge_artifacts:
name: Merge Artifacts
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4

upload_pypi:
needs: [build_wheels, build_sdist, merge]
needs: [build_wheels, build_sdist, merge_artifacts]
runs-on: ubuntu-latest
if: github.event.inputs.upload_to_pypi == 'true'
steps:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
### Changed
### Removed

## 5.2.0 - 2024.10.29
## 5.2.1 - 2024.10.29
### Added
- Expanded Statistics class to more problems.
- Created Statistics class
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@

setup(
name="PySCIPOpt",
version="5.2.0",
version="5.2.1",
description="Python interface and modeling environment for SCIP",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/pyscipopt/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '5.2.0'
__version__ = '5.2.1'

0 comments on commit 5c9843c

Please sign in to comment.