Skip to content

Commit

Permalink
minor bump up to manage error related to align_val_t error.
Browse files Browse the repository at this point in the history
  • Loading branch information
LimHyungTae committed Jan 28, 2025
1 parent 6230802 commit a76ea0d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
cmake_minimum_required(VERSION 3.18)
project(robin
VERSION 1.2.0
VERSION 1.2.1
DESCRIPTION "Robust outlier rejection based on measurement compatibility graphs"
LANGUAGES CXX
)
Expand Down
4 changes: 4 additions & 0 deletions python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ project(robin_python_bindings)
set(CMAKE_BUILD_TYPE Release)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)

# Specify the C++ standard to handle a build error related to `std::align_val_t_error` in Xenium.
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

find_package(Python COMPONENTS Interpreter Development.Module REQUIRED)
find_package(pybind11 CONFIG REQUIRED)

Expand Down
20 changes: 17 additions & 3 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,21 @@
pip install .
```

# Usage
## Usage
```python
import robin_py
```
import spark_robin
```

Please refer to `example.py`

## Test

Once you run

```
python example.py
```

it should not show any errors.


2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "spark_robin"
version = "1.2.0"
version = "1.2.1"
requires-python = ">=3.8"
description ='Python binding for Robin'
authors = [
Expand Down

0 comments on commit a76ea0d

Please sign in to comment.