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

December 2023 update to upstream tesseract 0.21.5 #68

Merged
merged 14 commits into from
Jan 18, 2024
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
Loading