taskdependencygraph 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/packaging_test.yml +3 -7
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/python-publish.yml +2 -2
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/PKG-INFO +1 -1
- taskdependencygraph-0.2.1/src/_taskdependencygraph_version.py +1 -0
- taskdependencygraph-0.2.0/src/_taskdependencygraph_version.py +0 -1
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/dependabot.yml +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/codeql-analysis.yml +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/coverage.yml +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/dependabot_automerge.yml +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/dev_test.yml +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/formatting.yml +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/no_byte_order_mark.yml +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/pythonlint.yml +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/unittests.yml +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.gitignore +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/README.md +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/domain-specific-terms.txt +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/pyproject.toml +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/requirements.txt +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/__init__.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/__init__.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/graph_definition_validation.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/ids.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/mermaid_gantt_config.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/person.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/schedule_report.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/task_dependency_edge.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/task_dependency_update.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/task_execution_status.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/task_node.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/task_node_as_artificial_endnode.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/task_node_as_artificial_startnode.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/plotting/__init__.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/plotting/kroki.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/plotting/protocols.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/py.typed +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/task_dependency_graph.py +0 -0
- {taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/tox.ini +0 -0
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/packaging_test.yml
RENAMED
|
@@ -6,17 +6,13 @@ on:
|
|
|
6
6
|
pull_request: {}
|
|
7
7
|
jobs:
|
|
8
8
|
check_packaging:
|
|
9
|
-
runs-on:
|
|
10
|
-
strategy:
|
|
11
|
-
matrix:
|
|
12
|
-
python-version: ["3.13"]
|
|
13
|
-
os: [ubuntu-latest]
|
|
9
|
+
runs-on: ubuntu-latest
|
|
14
10
|
steps:
|
|
15
11
|
- uses: actions/checkout@v6
|
|
16
|
-
- name: Set up Python
|
|
12
|
+
- name: Set up Python 3.14
|
|
17
13
|
uses: actions/setup-python@v6
|
|
18
14
|
with:
|
|
19
|
-
python-version:
|
|
15
|
+
python-version: 3.14
|
|
20
16
|
- name: Install dependencies
|
|
21
17
|
run: |
|
|
22
18
|
python -m pip install --upgrade pip
|
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/python-publish.yml
RENAMED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
runs-on: ${{ matrix.os }}
|
|
18
18
|
strategy:
|
|
19
19
|
matrix:
|
|
20
|
-
python-version: ["3.
|
|
20
|
+
python-version: ["3.14"]
|
|
21
21
|
os: [ubuntu-latest]
|
|
22
22
|
steps:
|
|
23
23
|
- uses: actions/checkout@v6
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
runs-on: ${{ matrix.os }}
|
|
39
39
|
strategy:
|
|
40
40
|
matrix:
|
|
41
|
-
python-version: [ "3.
|
|
41
|
+
python-version: [ "3.14" ]
|
|
42
42
|
os: [ ubuntu-latest ]
|
|
43
43
|
# Specifying a GitHub environment, # Specifying a GitHub environment, which is strongly recommended by PyPI: https://docs.pypi.org/trusted-publishers/adding-a-publisher/
|
|
44
44
|
# you have to create an environment in your repository settings and add the environment name here
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: taskdependencygraph
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Wrapper around a NetworkX Digraph to model and visualize tasks/todos, their duration and interdependencies
|
|
5
5
|
Project-URL: Changelog, https://github.com/Hochfrequenz/task-dependency-graph/releases
|
|
6
6
|
Project-URL: Homepage, https://github.com/Hochfrequenz/task-dependency-graph
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
version = "0.2.1"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
version = "0.2.0"
|
|
File without changes
|
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/codeql-analysis.yml
RENAMED
|
File without changes
|
|
File without changes
|
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/dependabot_automerge.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/.github/workflows/no_byte_order_mark.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/ids.py
RENAMED
|
File without changes
|
|
File without changes
|
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/person.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/models/task_node.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/plotting/__init__.py
RENAMED
|
File without changes
|
{taskdependencygraph-0.2.0 → taskdependencygraph-0.2.1}/src/taskdependencygraph/plotting/kroki.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|