Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

smaller docs and CI tweaks #539

Merged
merged 1 commit into from
Jun 10, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Linux / MacOS - c++

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:

workflow_dispatch:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sympy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Linux - sympy

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:

workflow_dispatch:
Expand All @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-22.04]
fail-fast: false


Expand Down
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
<h1 align="center"> Sophus </h1>

<p align="center">
<i> A collection of c++ types for 2d and 3d geometric problems. </i>
</p>

<div align="center">

<a href="https://github.com/strasdat/Sophus/actions/workflows/main.yml">
Expand All @@ -25,6 +19,11 @@

</div>

<h1 align="center"> Sophus </h1>

<p align="center">
<i> 2d and 3d Lie Groups for Computer Vision and Robotics </i>
</p>

This is a c++ implementation of Lie groups commonly used for 2d and 3d
geometric problems (i.e. for Computer Vision or Robotics applications).
Expand All @@ -36,9 +35,9 @@ SE(2) and SE(3) to represent isometries also known as rigid body transformations
## Status


*Sophus (aka Sophus 1) is in maintenance mode and there is no plane to add new larger features
(as of June 2024).*

*Sophus (aka Sophus 1) is in maintenance mode. As of June 2024, there is no
plane to add new larger features and future PRs will likely be limited to bug
fixes, small improvements and toolchain updates.*

However, next incarnations of Sophus are under development:

Expand Down Expand Up @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>sophus</name>
<version>1.22.10</version>
<version>1.24.06</version>
<description>
C++ implementation of Lie Groups using Eigen.
</description>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading