Conversation
Signed-off-by: Sean P. Goggins <outdoors@acm.org>
force consistency for debian version
Fix gihtub ratelimit issues in facade contributor resolution
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
…t_facade_contributors Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
…gathered. Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <outdoors@acm.org>
…ssages collected, or for which there are no messages Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
…ed to versions and dates. Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Signed-off-by: Sean P. Goggins <s@goggins.com>
Integrating Dev commits re: Docker into patch bundle.
Signed-off-by: Cali Dolfi <cdolfi@redhat.com>
Signed-off-by: Sean P. Goggins <outdoors@acm.org>
…es too often. Signed-off-by: Sean P. Goggins <s@goggins.com>
A collection of fixes for identified/new data anomalies from GitHub API
Update documentation to new docker compose
| url = f"https://registry.npmjs.org/{package}" | ||
| try: | ||
| r = requests.get(url) | ||
| if r.status_code < 400: |
There was a problem hiding this comment.
[pylint] reported by reviewdog 🐶
R1705: Unnecessary "else" after "return", remove the "else" and de-indent the code inside it (no-else-return)
| return None | ||
| try: | ||
| release_time = data.get('time', {}).get(version) | ||
| if release_time: |
There was a problem hiding this comment.
[pylint] reported by reviewdog 🐶
R1705: Unnecessary "else" after "return", remove the "else" and de-indent the code inside it (no-else-return)
| return 'unspecified' | ||
|
|
||
| try: | ||
| if requirement.startswith('~'): |
There was a problem hiding this comment.
[pylint] reported by reviewdog 🐶
R1705: Unnecessary "elif" after "return", remove the leading "el" from "elif" (no-else-return)
| @@ -2,88 +2,144 @@ | |||
| import logging | |||
| import traceback | |||
There was a problem hiding this comment.
[pylint] reported by reviewdog 🐶
W0611: Unused import traceback (unused-import)
| def parse_pipfile(file_handle): | ||
| manifest = toml.load(file_handle) | ||
| return map_dependencies_pipfile(manifest['packages'],'runtime') + map_dependencies_pipfile(manifest['dev-packages'], 'develop') | ||
| import toml |
There was a problem hiding this comment.
[pylint] reported by reviewdog 🐶
W0621: Redefining name 'toml' from outer scope (line 3) (redefined-outer-name)
| attempts += 1 | ||
| continue | ||
|
|
||
| if type(response_data) == dict: |
There was a problem hiding this comment.
[pylint] reported by reviewdog 🐶
R1723: Unnecessary "elif" after "break", remove the leading "el" from "elif" (no-else-break)
|
|
||
| success = True | ||
| break | ||
| except: |
There was a problem hiding this comment.
[pylint] reported by reviewdog 🐶
W0702: No exception type(s) specified (bare-except)
Description