~wooksong/nnstreamer-ros/+git/tizenport-python-rosdep:master

Last commit made on 2019-01-14
Get this branch:
git clone -b master https://git.launchpad.net/~wooksong/nnstreamer-ros/+git/tizenport-python-rosdep

Branch merges

Branch information

Recent commits

558e172... by Dirk Thomas <email address hidden>

0.14.0

ae0e89a... by Dirk Thomas <email address hidden>

skip EOL distros by default, add option to include them (#647)

* skip EOL distros by default, add option to include them

* add param doc

* invert param logic to keep API behavior

74e473f... by nuclearsandwich

0.13.0

c54bcf4... by =?utf-8?q?Steven!_Ragnar=C3=B6k?= <email address hidden>

Use pickle protocol format version 2. (#633)

* Use pickle protocol format version 2.

* Test that files pickled with python2 and python3 are the same.

Adds two test fixture files, a rosdep cache sample generated from
python2 and one generated from python3 and makes sure that they both
unpickle to the same data structure.

9cfa9cf... by Scott K Logan

Make DNF install best-effort like YUM (#638)

231fac2... by Tully

Add reference to LICENSE file in stdeb.cfg (#613)

8dbac9c... by Scott K Logan

Clean up shebang warnings (#630)

Two classes of changes here:
1. `catkin_support.py` is executable, but has no shebang, so I removed
the executable bit.
2. `main.py` has a shebang and `__main__` handler, and I removed it. It
can still be executed directly using the python executable, but like
with ros-infrastructure/rospkg#159, it doesn't make sense to have
executable scripts in the module.

dc3c601... by Nikolaus Demmel

fix travis: format_map is python 3.2 or later only and ignore new rule W504 (#636)

* format_map is python 3.2 or later only (see also #602)

* Ignore new pycodestyle rule W504

Was introduced in https://github.com/PyCQA/pycodestyle/pull/502 it seems.

Makes travis on master fail https://travis-ci.org/ros-infrastructure/rosdep/jobs/445522297

047b058... by Karim Chamaa <email address hidden>

Grammatical Error satisified -> satisfied (#634)

1fc7cb7... by Scott K Logan

Decode stdout during documentation build (#628)

I think that I'm seeing this because doc builds are happening with
python 3 on Fedora. Here is the error I'm seeing:

```
...
  File "./rosdep_doc_utils.py", line 38, in run
    nodes.literal_block(text=re.sub(escaped_capitalized_usage, '', out))
  File "/usr/lib64/python3.6/re.py", line 191, in sub
    return _compile(pattern, flags).sub(repl, string, count)
TypeError: cannot use a string pattern on a bytes-like object
```