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