Skip to content

Commit 34126cf

Browse files
authored
Merge pull request #189 from jcarpent/master
Sync submodule CMake
2 parents f53d54d + d86ec49 commit 34126cf

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ EigenPy — Efficient Python bindings between Numpy/Eigen
1919

2020
## Setup
2121

22-
The installation of **EigenPy** on your computer is made easy for Linux/BSD and Mac OS X environments.
22+
The installation of **EigenPy** on your computer is made easy for Linux/BSD, Mac OS X and Windows environments.
2323

2424
### The Conda approach
2525

@@ -69,10 +69,6 @@ and then install **EigenPy** for Python 3.x with:
6969
```
7070
brew install eigenpy
7171
```
72-
or for Python 2.7:
73-
```
74-
brew install eigenpy@2
75-
```
7672

7773
## Credits
7874

package.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
2-
<package format="2">
2+
<package format="3">
33
<name>eigenpy</name>
4-
<version>2.3.1</version>
4+
<version>2.3.2</version>
55
<description>Bindings between Numpy and Eigen using Boost.Python</description>
66
<maintainer email="[email protected]">Justin Carpentier</maintainer>
77
<maintainer email="[email protected]">Wolfgang Merkt</maintainer>
@@ -13,8 +13,10 @@
1313

1414
<build_depend>git</build_depend>
1515
<build_depend>doxygen</build_depend>
16-
<depend>python</depend>
17-
<depend>python-numpy</depend>
16+
<depend condition="$ROS_PYTHON_VERSION == 2">python</depend>
17+
<depend condition="$ROS_PYTHON_VERSION == 3">python3</depend>
18+
<depend condition="$ROS_PYTHON_VERSION == 2">python-numpy</depend>
19+
<depend condition="$ROS_PYTHON_VERSION == 3">python3-numpy</depend>
1820
<depend>eigen</depend>
1921
<depend>boost</depend>
2022

0 commit comments

Comments
 (0)