Skip to content

Commit 854eb94

Browse files
authored
Merge pull request #661 from scipopt/new-release-4.3
New release 4.3
2 parents 11ab457 + 1e5454e commit 854eb94

File tree

5 files changed

+27
-24
lines changed

5 files changed

+27
-24
lines changed

.github/workflows/integration-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Integration test
22

33
env:
4-
version: 8.0.0
4+
version: 8.0.3
55

66
# runs on branches and pull requests; doesn't run on tags.
77
on:
@@ -19,15 +19,15 @@ jobs:
1919
matrix:
2020
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323

2424
- name: Install dependencies (SCIPOptSuite)
2525
run: |
2626
wget --quiet --no-check-certificate https://scipopt.org/download/release/SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
2727
sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
2828
2929
- name: Setup python ${{ matrix.python-version }}
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v4
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333

@@ -51,7 +51,7 @@ jobs:
5151
matrix:
5252
python-version: ["3.8", "3.9", "3.10", "3.11"]
5353
steps:
54-
- uses: actions/checkout@v2
54+
- uses: actions/checkout@v3
5555

5656
- name: Download dependencies (SCIPOptSuite)
5757
shell: powershell
@@ -62,7 +62,7 @@ jobs:
6262
run: scipopt-installer.exe /S /D=${{ env.SCIPOPTDIR }}
6363

6464
- name: Setup python ${{ matrix.python-version }}
65-
uses: actions/setup-python@v2
65+
uses: actions/setup-python@v4
6666
with:
6767
python-version: ${{ matrix.python-version }}
6868

@@ -89,7 +89,7 @@ jobs:
8989
matrix:
9090
python-version: ["3.8", "3.9", "3.10", "3.11"]
9191
steps:
92-
- uses: actions/checkout@v2
92+
- uses: actions/checkout@v3
9393

9494
- name: Cache dependencies (SCIPOptSuite)
9595
id: cache-scip
@@ -120,7 +120,7 @@ jobs:
120120
make install -j
121121
122122
- name: Setup python ${{ matrix.python-version }}
123-
uses: actions/setup-python@v2
123+
uses: actions/setup-python@v4
124124
with:
125125
python-version: ${{ matrix.python-version }}
126126

.github/workflows/test-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: TestPyPI release
22

33
env:
4-
version: 8.0.0
4+
version: 8.0.3
55

66

77
# runs only when a release is published, not on drafts
@@ -13,15 +13,15 @@ jobs:
1313
deploy-packges-and-generate-documentation:
1414
runs-on: ubuntu-20.04
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717

1818
- name: Install dependencies (SCIPOptSuite)
1919
run: |
2020
wget --quiet --no-check-certificate https://scipopt.org/download/release/SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
2121
sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
2222
2323
- name: Setup python 3
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: '3.x'
2727

.github/workflows/update-packages-and-documentation.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Test and Release PyPI Package
22

33
env:
4-
version: 8.0.0
4+
version: 8.0.3
55

66

77
# runs only when a release is published, not on drafts
@@ -32,17 +32,17 @@ jobs:
3232
strategy:
3333
fail-fast: true
3434
matrix:
35-
python-version: [3.6, 3.7, 3.8, 3.9]
35+
python-version: [3.7, 3.8, 3.9, 3.10, 3.11]
3636
steps:
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v3
3838

3939
- name: Install dependencies (SCIPOptSuite)
4040
run: |
4141
wget --quiet --no-check-certificate https://scipopt.org/download/release/SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
4242
sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
4343
4444
- name: Setup python ${{ matrix.python-version }}
45-
uses: actions/setup-python@v2
45+
uses: actions/setup-python@v4
4646
with:
4747
python-version: ${{ matrix.python-version }}
4848

@@ -65,9 +65,9 @@ jobs:
6565
runs-on: windows-latest
6666
strategy:
6767
matrix:
68-
python-version: [3.8, 3.9]
68+
python-version: [3.8, 3.9, 3.10, 3.11]
6969
steps:
70-
- uses: actions/checkout@v2
70+
- uses: actions/checkout@v3
7171

7272
- name: Download dependencies (SCIPOptSuite)
7373
shell: powershell
@@ -78,7 +78,7 @@ jobs:
7878
run: scipopt-installer.exe /S /D=${{ env.SCIPOPTDIR }}
7979

8080
- name: Setup python ${{ matrix.python-version }}
81-
uses: actions/setup-python@v2
81+
uses: actions/setup-python@v4
8282
with:
8383
python-version: ${{ matrix.python-version }}
8484

@@ -102,15 +102,15 @@ jobs:
102102
needs: Windows-test
103103
runs-on: ubuntu-20.04
104104
steps:
105-
- uses: actions/checkout@v2
105+
- uses: actions/checkout@v3
106106

107107
- name: Install dependencies (SCIPOptSuite)
108108
run: |
109109
wget --quiet --no-check-certificate https://scipopt.org/download/release/SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
110110
sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
111111
112112
- name: Setup python 3
113-
uses: actions/setup-python@v2
113+
uses: actions/setup-python@v4
114114
with:
115115
python-version: '3.x'
116116

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22

33
## Unreleased
44
### Added
5+
### Fixed
6+
### Changed
7+
### Removed
8+
9+
## 4.3.0 - 2023-03-17
10+
### Added
511
- Add SCIP function SCIprowGetOriginCons
612
- Add getConsOriginConshdlrtype to Row
713
- Add possibility to use sine and cosing
8-
- Add ability to set priced variable score
9-
10-
### Fixed
11-
### Changed
14+
- Add ability to set priced variable score
1215
### Removed
1316
- Removed function rowGetNNonz
1417

src/pyscipopt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '4.2.0'
1+
__version__ = '4.3.0'
22

33
# required for Python 3.8 on Windows
44
import os

0 commit comments

Comments
 (0)