Skip to content

Commit 0c126a7

Browse files
committed
Update dependencies
1 parent d13db82 commit 0c126a7

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ jobs:
180180
--print-errorlogs
181181
--no-rebuild
182182
--num-processes 1
183-
#--suite s-dftd3
183+
--suite s-dftd3
184184
-t 2
185185
env:
186186
OMP_NUM_THREADS: 1,2,1

.github/workflows/wheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
os:
7070
- ubuntu-latest
7171
- windows-latest
72-
- macos-13
72+
- macos-15-intel
7373
- macos-14
7474

7575
defaults:
@@ -100,7 +100,7 @@ jobs:
100100
CIBW_ARCHS_MACOS: ${{ matrix.os == 'macos-14' && 'arm64' || 'x86_64' }}
101101
CIBW_ENVIRONMENT_MACOS: >
102102
CC=gcc-14 CXX=g++-14 FC=gfortran-14
103-
MACOSX_DEPLOYMENT_TARGET=${{ matrix.os == 'macos-14' && '14.0' || '13.0' }}
103+
MACOSX_DEPLOYMENT_TARGET=${{ matrix.os == 'macos-14' && '14.0' || '15.0' }}
104104
CIBW_BEFORE_ALL_MACOS: brew install gcc@14
105105
CIBW_BEFORE_BUILD_WINDOWS: choco upgrade mingw && pip install delvewheel
106106
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel show {wheel} && delvewheel repair -w {dest_dir} {wheel} --no-mangle-all"

config/cmake/Findmctc-lib.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
set(_lib "mctc-lib")
1818
set(_pkg "MCTCLIB")
1919
set(_url "https://github.com/grimme-lab/mctc-lib")
20-
set(_rev "v0.5.0")
20+
set(_rev "v0.5.1")
2121

2222
if(NOT DEFINED "${_pkg}_FIND_METHOD")
2323
if(DEFINED "${PROJECT_NAME}-dependency-method")

config/cmake/Findtoml-f.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
set(_lib "toml-f")
1818
set(_pkg "TOMLF")
1919
set(_url "https://github.com/toml-f/toml-f")
20-
set(_rev "v0.4.2")
20+
set(_rev "v0.4.3")
2121

2222
if(NOT DEFINED "${_pkg}_FIND_METHOD")
2323
if(DEFINED "${PROJECT_NAME}-dependency-method")

config/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ endif
4646
# Create the tool chain library as subproject
4747
mctc_dep = dependency(
4848
'mctc-lib',
49-
version: '>=0.4.1',
49+
version: '>=0.5.1',
5050
fallback: ['mctc-lib', 'mctc_dep'],
5151
default_options: ['default_library=static'],
5252
)
@@ -55,6 +55,7 @@ lib_deps += mctc_dep
5555
# Create the TOML Fortran library as subproject
5656
tomlf_dep = dependency(
5757
'toml-f',
58+
version: '>=0.4.3',
5859
fallback: ['toml-f', 'tomlf_dep'],
5960
default_options: ['default_library=static'],
6061
)

fpm.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["dispersion-correction", "quantum-chemistry"]
99

1010
[dependencies]
1111
mctc-lib.git = "https://github.com/grimme-lab/mctc-lib"
12-
mctc-lib.tag = "v0.5.0"
12+
mctc-lib.tag = "v0.5.1"
1313

1414
[dev-dependencies]
1515
mstore.git = "https://github.com/grimme-lab/mstore"
@@ -21,6 +21,7 @@ auto-tests = false
2121
[[executable]]
2222
name = "s-dftd3"
2323
dependencies.toml-f.git = "https://github.com/toml-f/toml-f"
24+
dependencies.toml-f.tag = "v0.4.3"
2425

2526
[[test]]
2627
name = "tester"

subprojects/mctc-lib.wrap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[wrap-git]
22
directory = mctc-lib
3-
url = https://github.com/thfroitzheim/mctc-lib
4-
revision = update-jonquil
3+
url = https://github.com/grimme-lab/mctc-lib
4+
revision = v0.5.1

0 commit comments

Comments
 (0)