You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ke...@apache.org on 2022/01/26 04:38:38 UTC

[dolphinscheduler] branch dev updated (a1cc2fd -> 35578ef)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git.


    from a1cc2fd  [task] Python task support PYTHON_HOME (#8196)
     add 35578ef  [python] Initiate document for pydolphinscheduler (#8005)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/py-ci.yml                        |  17 +++
 .licenserc.yaml                                    |   1 +
 dolphinscheduler-python/pydolphinscheduler/.flake8 |   1 +
 .../core/base_side.py => docs/Makefile}            |  35 +++--
 .../pydolphinscheduler/docs/make.bat               |  54 ++++++++
 .../docs/source/_static/.gitkeep                   |   0
 .../pydolphinscheduler/docs/source/api.rst         |  47 +++++++
 .../pydolphinscheduler/docs/source/concept.rst     | 151 +++++++++++++++++++++
 .../pydolphinscheduler/docs/source/conf.py         |  88 ++++++++++++
 .../pydolphinscheduler/docs/source/index.rst       |  42 ++++++
 .../pydolphinscheduler/docs/source/start.rst       | 113 +++++++++++++++
 .../docs/source/tasks/condition.rst                |  33 +++++
 .../pydolphinscheduler/docs/source/tasks/datax.rst |  33 +++++
 .../docs/source/tasks/dependent.rst                |  33 +++++
 .../pydolphinscheduler/docs/source/tasks/flink.rst |  33 +++++
 .../pydolphinscheduler/docs/source/tasks/http.rst  |  21 +++
 .../pydolphinscheduler/docs/source/tasks/index.rst |  41 ++++++
 .../docs/source/tasks/map_reduce.rst               |  34 +++++
 .../docs/source/tasks/procedure.rst                |  21 +++
 .../docs/source/tasks/python.rst                   |  21 +++
 .../pydolphinscheduler/docs/source/tasks/shell.rst |  33 +++++
 .../pydolphinscheduler/docs/source/tasks/spark.rst |  33 +++++
 .../pydolphinscheduler/docs/source/tasks/sql.rst   |  21 +++
 .../docs/source/tasks/sub_process.rst              |  21 +++
 .../docs/source/tasks/switch.rst                   |  33 +++++
 .../pydolphinscheduler/docs/source/tutorial.rst    | 150 ++++++++++++++++++++
 ...itions_example.py => task_condition_example.py} |  10 +-
 .../examples/task_datax_example.py                 |   3 +-
 .../examples/task_dependent_example.py             |   2 +
 .../examples/task_flink_example.py                 |   2 +
 .../examples/task_map_reduce_example.py            |   2 +
 .../examples/task_spark_example.py                 |   2 +
 .../examples/task_switch_example.py                |   2 +
 .../pydolphinscheduler/examples/tutorial.py        |  18 ++-
 .../pydolphinscheduler/requirements_dev.txt        |   3 +
 .../src/pydolphinscheduler/core/__init__.py        |  10 ++
 .../src/pydolphinscheduler/side/__init__.py        |  10 ++
 .../src/pydolphinscheduler/tasks/__init__.py       |  30 ++++
 .../src/pydolphinscheduler/tasks/condition.py      |   2 +-
 .../src/pydolphinscheduler/tasks/shell.py          |  23 +++-
 .../tests/example/test_example.py                  |  42 +++---
 .../tests/tasks/test_condition.py                  |   8 +-
 .../pydolphinscheduler/tests/test_docs.py          |  59 ++++++++
 .../__init__.py => tests/testing/constants.py}     |  14 +-
 .../pydolphinscheduler/tests/testing/path.py       |  54 ++++++++
 45 files changed, 1354 insertions(+), 52 deletions(-)
 copy dolphinscheduler-python/pydolphinscheduler/{src/pydolphinscheduler/core/base_side.py => docs/Makefile} (52%)
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/make.bat
 copy dolphinscheduler-task-plugin/dolphinscheduler-task-pigeon/readme.md => dolphinscheduler-python/pydolphinscheduler/docs/source/_static/.gitkeep (100%)
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/api.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/concept.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/conf.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/index.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/start.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/condition.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/datax.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/dependent.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/flink.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/http.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/index.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/map_reduce.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/procedure.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/python.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/shell.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/spark.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/sql.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/sub_process.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/switch.rst
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/docs/source/tutorial.rst
 rename dolphinscheduler-python/pydolphinscheduler/examples/{task_conditions_example.py => task_condition_example.py} (91%)
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/tests/test_docs.py
 copy dolphinscheduler-python/pydolphinscheduler/{src/pydolphinscheduler/side/__init__.py => tests/testing/constants.py} (70%)
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/tests/testing/path.py