You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run dual_quaternions tests with Python3 in Travis CI. This requires a few modifications:
In setup.py, from distutils.core import setup --> from setuptools import setup although this old article says it doesn't like it but I think that can be disregarded.
Code needs to become python3 compatible. Just need to fix one test!
Modify Travis config to run python3. Not sure how that would work with ROS installation.
The text was updated successfully, but these errors were encountered:
on 3: you might just want to have a seperate job so that it tries it with clean python 3, assuming ROS isn't really needed. Then you can have tests that isolate the different use cases.
Also: just started using github actions, pretty cool
Run
dual_quaternions
tests with Python3 in Travis CI. This requires a few modifications:setup.py
,from distutils.core import setup
-->from setuptools import setup
although this old article says it doesn't like it but I think that can be disregarded.The text was updated successfully, but these errors were encountered: