Skip to content

Commit 59a3529

Browse files
authored
December 2023 update to upstream tesseract 0.21.5 (#68)
* 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
1 parent 2c8b9f6 commit 59a3529

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

dependencies.rosinstall

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
- git:
66
local-name: tesseract
77
uri: https://github.com/tesseract-robotics/tesseract.git
8-
version: 0.21.4
8+
version: 0.21.5
99
- git:
1010
local-name: tesseract_planning
1111
uri: https://github.com/tesseract-robotics/tesseract_planning.git
12-
version: 0.21.4
12+
version: 0.21.6
1313
- git:
1414
local-name: trajopt
1515
uri: https://github.com/tesseract-robotics/trajopt.git

dependencies_with_ext.rosinstall

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
- git:
66
local-name: tesseract
77
uri: https://github.com/tesseract-robotics/tesseract.git
8-
version: 0.21.4
8+
version: 0.21.5
99
- git:
1010
local-name: tesseract_planning
1111
uri: https://github.com/tesseract-robotics/tesseract_planning.git
12-
version: 0.21.4
12+
version: 0.21.6
1313
- git:
1414
local-name: trajopt
1515
uri: https://github.com/tesseract-robotics/trajopt.git

tesseract_python/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package format="3">
33
<name>tesseract_python</name>
4-
<version>0.3.0</version>
4+
<version>0.4.0</version>
55
<description>The tesseract_python package</description>
66
<maintainer email="wason@wasontech.com">John Wason</maintainer>
77
<license>Apache 2.0</license>

tesseract_python/swig/tesseract_swig_include.i

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ namespace std {
7373
%{
7474
namespace std
7575
{
76+
77+
#if SWIG_VERSION < 0x040200
78+
// SwigPySequence_Ref is not defined in swig >= 4.2.0
7679
template<typename T> struct remove_reference<swig::SwigPySequence_Ref<T>>
7780
{
7881
typedef T type;
@@ -82,6 +85,7 @@ namespace std
8285
{
8386
typedef const T type;
8487
};
88+
#endif
8589

8690
template<typename T> struct remove_reference<SwigValueWrapper<T>>
8791
{

0 commit comments

Comments
 (0)