Skip to content

Commit b302987

Browse files
author
Sebastien Bouvard
committed
Merge branch 'feature/QPR-13801' into 'master'
QPR-13801: bump up version and cleanup github actions Closes QPR-13801 See merge request qs/oreplus!3182
2 parents 1aa288c + 1d13687 commit b302987

5 files changed

Lines changed: 11 additions & 4 deletions

File tree

.github/workflows/build_windows_pypy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
run: |
3636
swig -version
3737
swig -help
38+
- name: install setuptools
39+
run: |
40+
python --version
41+
pip install setuptools
3842
- name: zlib
3943
run: |
4044
$Url = "https://www.zlib.net/zlib131.zip"

.github/workflows/linux_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build:
1111
name: building
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:

.github/workflows/linux_manylinux_wheels_02.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Linux x86_64 ManyLinux Wheels (cp*)
22

33
on:
4+
push:
5+
tags:
6+
- 'v*'
47
workflow_dispatch:
58

69
jobs:

ORE-SWIG/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ def finalize_options(self):
278278
]
279279

280280
setup(name = "open-source-risk-engine",
281-
version = "1.8.14.0",
281+
version = "1.8.15.0",
282282
description = "Python bindings for the OREAnalytics library",
283283
long_description = """
284284
OREAnalytics (http://opensourcerisk.org/) is a C++ library for financial quantitative

QuantExt/qle/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
#define quantext_version_hpp
2525

2626
//! Version string
27-
#define OPEN_SOURCE_RISK_VERSION "1.8.14.0"
27+
#define OPEN_SOURCE_RISK_VERSION "1.8.15.0"
2828

2929
//! Version number
30-
#define OPEN_SOURCE_RISK_VERSION_NUM 1081400
30+
#define OPEN_SOURCE_RISK_VERSION_NUM 1081500
3131

3232
#endif

0 commit comments

Comments
 (0)