From 092f2b62ce3c7f2dbff4978223a063dfef961820 Mon Sep 17 00:00:00 2001 From: Hauke Strasdat Date: Sun, 9 Jun 2024 23:32:52 -0700 Subject: [PATCH] smaller ci tweak --- .github/workflows/main.yml | 2 +- .github/workflows/sympy.yml | 4 ++-- README.md | 11 +++++------ package.xml | 2 +- setup.py | 2 +- 5 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 402bd9107..650dc2041 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,7 @@ name: Linux / MacOS - c++ on: push: - branches: [ master ] + branches: [ main ] pull_request: workflow_dispatch: diff --git a/.github/workflows/sympy.yml b/.github/workflows/sympy.yml index 7c72ccae6..6ec7ffe59 100644 --- a/.github/workflows/sympy.yml +++ b/.github/workflows/sympy.yml @@ -2,7 +2,7 @@ name: Linux - sympy on: push: - branches: [ master ] + branches: [ main ] pull_request: workflow_dispatch: @@ -12,7 +12,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04] + os: [ubuntu-22.04] fail-fast: false diff --git a/README.md b/README.md index cf5ac6fa0..8bdffd636 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,5 @@

Sophus

-

- A collection of c++ types for 2d and 3d geometric problems. -

-
@@ -25,6 +21,9 @@
+

+ 2d and 3d Lie Groups for Computer Vision and Robotics +

This is a c++ implementation of Lie groups commonly used for 2d and 3d geometric problems (i.e. for Computer Vision or Robotics applications). @@ -66,8 +65,8 @@ However, next incarnations of Sophus are under development: -How to build ------------- +How to build Sophus +------------------- Sophus requires a C++17 compiler (though older versions build with C++14). diff --git a/package.xml b/package.xml index 72a190801..770074e14 100644 --- a/package.xml +++ b/package.xml @@ -1,7 +1,7 @@ sophus - 1.22.10 + 1.24.06 C++ implementation of Lie Groups using Eigen. diff --git a/setup.py b/setup.py index affc3ceb6..05bf4db86 100644 --- a/setup.py +++ b/setup.py @@ -132,7 +132,7 @@ def main(): # logic and declaration, and simpler if you include description/version in a file. setup( name="sophus_pybind", - version="1.22.10", + version="1.24.06", description="Sophus python API", long_description="Python API for sophus library", url="https://github.com/strasdat/sophus",