Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release notes

## Version 2026.1.1, - 2026-01-xx

### Changed
- changed boost version to 1.88, switch to c++-14

## Version 2024.2.1, - 2024-09-09

### Changed
Expand Down
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ else:

# Specify minimum C++ standard. Allow later standard from sconscript.local.
# In case of multiple `-std` options the last option holds.
env.PrependUnique(CXXFLAGS='-std=c++11', delete_existing=1)
env.PrependUnique(CXXFLAGS='-std=c++14', delete_existing=1)

# for k, v in env.Dictionary().items():
# print(k, v)
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
boost:
- 1.78
- 1.88

# only for local build ? see https://github.com/conda/conda-build/issues/4064#issuecomment-702983257
#CONDA_BUILD_SYSROOT:
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ requirements:
- scons
- python
host:
- boost {{ boost }}
- libboost-headers {{ boost }}


test:
Expand Down