Skip to content

Commit

Permalink
December 2023 update to upstream tesseract 0.21.5 (#68)
Browse files Browse the repository at this point in the history
* Update to tesseract 0.21.4

* Fix LD_LIBRARY_PATH during docs build for wheels workflow

* Bump version to 0.3.0

* Add python 3.12 build

* Update generated api docs

* Update docs requirements

* Update docs requirements

* Update docs build configs

* Update docs build configs

* Update docs build configs

* Update dependency repos tags

* Fix swig 4.2.0 support

* Bump tesseract_python package version
  • Loading branch information
johnwason authored Jan 18, 2024
1 parent 2c8b9f6 commit 59a3529
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dependencies.rosinstall
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
- git:
local-name: tesseract
uri: https://github.com/tesseract-robotics/tesseract.git
version: 0.21.4
version: 0.21.5
- git:
local-name: tesseract_planning
uri: https://github.com/tesseract-robotics/tesseract_planning.git
version: 0.21.4
version: 0.21.6
- git:
local-name: trajopt
uri: https://github.com/tesseract-robotics/trajopt.git
Expand Down
4 changes: 2 additions & 2 deletions dependencies_with_ext.rosinstall
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
- git:
local-name: tesseract
uri: https://github.com/tesseract-robotics/tesseract.git
version: 0.21.4
version: 0.21.5
- git:
local-name: tesseract_planning
uri: https://github.com/tesseract-robotics/tesseract_planning.git
version: 0.21.4
version: 0.21.6
- git:
local-name: trajopt
uri: https://github.com/tesseract-robotics/trajopt.git
Expand Down
2 changes: 1 addition & 1 deletion tesseract_python/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>tesseract_python</name>
<version>0.3.0</version>
<version>0.4.0</version>
<description>The tesseract_python package</description>
<maintainer email="[email protected]">John Wason</maintainer>
<license>Apache 2.0</license>
Expand Down
4 changes: 4 additions & 0 deletions tesseract_python/swig/tesseract_swig_include.i
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ namespace std {
%{
namespace std
{

#if SWIG_VERSION < 0x040200
// SwigPySequence_Ref is not defined in swig >= 4.2.0
template<typename T> struct remove_reference<swig::SwigPySequence_Ref<T>>
{
typedef T type;
Expand All @@ -82,6 +85,7 @@ namespace std
{
typedef const T type;
};
#endif

template<typename T> struct remove_reference<SwigValueWrapper<T>>
{
Expand Down

0 comments on commit 59a3529

Please sign in to comment.