Skip to content

Commit fdf02bc

Browse files
committed
Fix wheel build workflow
1 parent d5f154f commit fdf02bc

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python-version: "3.12"
3636

3737
- name: Build and test wheels
38-
uses: pypa/cibuildwheel@v3
38+
uses: pypa/cibuildwheel@v4.1.0
3939
env:
4040
CIBW_BUILD: "cp310-* cp311-* cp312-*"
4141
CIBW_SKIP: "pp* *-musllinux_*"

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ This repository implements an end-to-end short-rate derivatives platform centere
1616

1717
```text
1818
.
19-
├── .github/workflows/build.yml # Cross-platform wheel build and invariant test pipeline
20-
├── .streamlit/ # Streamlit Cloud configuration and secret template
21-
├── cpp_core/
22-
├── include/ # Typed C++ public interfaces
23-
└── src/ # C++17 implementation and pybind11 bindings
24-
├── python_layer/
25-
├── data_io.py # FRED API + DuckDB market-data ingestion
26-
├── ray_orchestrator.py # Stateless distributed pricing orchestration
27-
├── grpc_service.py # Async gRPC pricing service
28-
└── xlwings_udf.py # Excel UDF integration
29-
├── tests/test_invariants.py # Mathematical verification suite
30-
├── app.py # Streamlit dashboard
31-
├── CMakeLists.txt # Native build definition
32-
├── pyproject.toml # PEP 517 wheel build configuration
33-
└── requirements.txt # Runtime, dashboard, and CI dependencies
19+
|-- .github/workflows/build.yml # Cross-platform wheel build and invariant test pipeline
20+
|-- .streamlit/ # Streamlit Cloud configuration and secret template
21+
|-- cpp_core/
22+
| |-- include/ # Typed C++ public interfaces
23+
| `-- src/ # C++17 implementation and pybind11 bindings
24+
|-- python_layer/
25+
| |-- data_io.py # FRED API + DuckDB market-data ingestion
26+
| |-- ray_orchestrator.py # Stateless distributed pricing orchestration
27+
| |-- grpc_service.py # Async gRPC pricing service
28+
| `-- xlwings_udf.py # Excel UDF integration
29+
|-- tests/test_invariants.py # Mathematical verification suite
30+
|-- app.py # Streamlit dashboard
31+
|-- CMakeLists.txt # Native build definition
32+
|-- pyproject.toml # PEP 517 wheel build configuration
33+
`-- requirements.txt # Runtime, dashboard, and CI dependencies
3434
```
3535

3636
## Quantitative Model

0 commit comments

Comments
 (0)