Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/XmsInterp-CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install conan devpi-client wheel cibuildwheel
python -m pip install xmsconan>=2.0.0 -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
python -m pip install xmsconan>=2.2.1 -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
# Setup Conan
- name: Setup Conan
run: |
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
run: xmsconan_gen --version ${{ env.XMS_VERSION }} build.toml
# Build the Conan Package
- name: Build the Conan Packages
run: "python build.py --filter=\"{\\\"build_type\\\": \\\"${{ matrix.build_type }}\\\"}\""
run: "python build.py --enable-macos-pybind --filter=\"{\\\"build_type\\\": \\\"${{ matrix.build_type }}\\\"}\""
shell: bash
# Upload Release to Conan
- name: Upload Releases to Conan
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install conan devpi-client wheel cibuildwheel
python -m pip install xmsconan>=2.0.0 -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
python -m pip install xmsconan>=2.2.1 -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
# Setup Conan
- name: Setup Conan
run: |
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install conan devpi-client wheel cibuildwheel
python -m pip install xmsconan>=2.0.0 -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
python -m pip install xmsconan>=2.2.1 -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
# Setup Visual Studio
- name: Setup Visual Studio
uses: microsoft/setup-msbuild@v2
Expand Down
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,26 @@ build/*
pybuild/*
build_py/*
build_test/*

# AI assistant configuration (local only)
.claude/
CLAUDE.md
CLAUDE.local.md
.envrc

# CMake presets (local configuration)
CMakePresets.json
CMakeUserPresets.json
**/CMakeUserPresets.json

# Conan profiles (local configuration)
conan_profiles/

# Coverage artifacts
coverage_report/
*.profraw
*.profdata

# clangd
compile_commands.json
.cache/
4 changes: 2 additions & 2 deletions build.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ library_name = "xmsinterp"
description = "Interpolation library for XMS products"

xms_dependencies = [
{ name = "xmscore", version = "7.0.0" },
{ name = "xmsgrid", version = "9.0.2" },
{ name = "xmscore", version = "7.0.1" },
{ name = "xmsgrid", version = "9.0.3" },
]

python_namespaced_dir = "interp"
Expand Down
Loading