mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2026-07-04 15:52:15 +08:00
Compare commits
No commits in common. "df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6" and "fc41f4aa84084bfae6e2db6a5a1fe7949bb28bae" have entirely different histories.
df129c7ba3
...
fc41f4aa84
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
@ -17,9 +17,9 @@ jobs:
|
|||||||
- "3.9"
|
- "3.9"
|
||||||
- "3.10"
|
- "3.10"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v1
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Install ffmpeg
|
- name: Install ffmpeg
|
||||||
@ -37,9 +37,8 @@ jobs:
|
|||||||
black:
|
black:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v2
|
||||||
- name: Black
|
- uses: psf/black@21.12b0 # TODO: upgrade after dropping Python 2 support.
|
||||||
run: |
|
with:
|
||||||
# TODO: use standard `psf/black` action after dropping Python 2 support.
|
src: ffmpeg # TODO: also format `examples`.
|
||||||
pip install black==21.12b0 click==8.0.2 # https://stackoverflow.com/questions/71673404
|
version: 21.12b0
|
||||||
black ffmpeg --check --color --diff
|
|
||||||
|
|||||||
@ -74,7 +74,7 @@ class DagNode(object):
|
|||||||
"""Provides information about all incoming edges that connect to this node.
|
"""Provides information about all incoming edges that connect to this node.
|
||||||
|
|
||||||
The edge map is a dictionary that maps an ``incoming_label`` to
|
The edge map is a dictionary that maps an ``incoming_label`` to
|
||||||
``(outgoing_node, outgoing_label)``. Note that implicitly, ``incoming_node`` is
|
``(outgoing_node, outgoing_label)``. Note that implicity, ``incoming_node`` is
|
||||||
``self``. See "Edges" section above.
|
``self``. See "Edges" section above.
|
||||||
"""
|
"""
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user