diff --git a/.github/ISSUE_TEMPLATE/bugs.yaml b/.github/ISSUE_TEMPLATE/bugs.yaml index 4899769..18822d3 100644 --- a/.github/ISSUE_TEMPLATE/bugs.yaml +++ b/.github/ISSUE_TEMPLATE/bugs.yaml @@ -1,5 +1,5 @@ name: Bugs -description: Broken elements within workflowpy +description: Broken elements within workflow-python # title: "BUG: " labels: [bug] @@ -7,13 +7,13 @@ body: - type: checkboxes id: checks attributes: - label: workflowpy version checks + label: workflow-python version checks options: - label: > I have checked that this issue has not already been reported. required: true - label: > - I have checked that this bug exists on the latest version of workflowpy. + I have checked that this bug exists on the latest version of workflow-python. required: true - type: textarea id: example diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 4377ad3..4311b34 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: false contact_links: - name: Ask a question - url: https://github.com/deltares-research/workflowpy/discussions + url: https://github.com/deltares-research/workflow-python/discussions about: Ask questions and discuss with other community members diff --git a/.github/ISSUE_TEMPLATE/documentation.yaml b/.github/ISSUE_TEMPLATE/documentation.yaml index 20b0581..71c6b40 100644 --- a/.github/ISSUE_TEMPLATE/documentation.yaml +++ b/.github/ISSUE_TEMPLATE/documentation.yaml @@ -6,11 +6,11 @@ labels: [documentation] body: - type: checkboxes attributes: - label: workflowpy version checks + label: workflow-pyhton version checks options: - label: > I have checked that the issue still exists on the latest versions of the docs - on `main` [here](https://github.com/deltares-research/workflowpy) + on `main` [here](https://github.com/deltares-research/workflow-python) required: true - type: dropdown id: kind diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index abe1a51..92340c8 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -1,5 +1,5 @@ name: Feature Request -description: Propose an improvement for workflowpy +description: Propose an improvement for workflow-python # title: "Improvement: " labels: [enhancement] diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 2cbd11d..997ce10 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -55,7 +55,7 @@ jobs: if: github.event_name == 'push' environment: name: testpypi - url: https://test.pypi.org/p/workflowpy + url: https://test.pypi.org/p/workflow-python runs-on: ubuntu-latest permissions: id-token: write @@ -78,7 +78,7 @@ jobs: runs-on: ubuntu-latest environment: name: pypi - url: https://pypi.org/p/workflowpy + url: https://pypi.org/p/workflow-python permissions: id-token: write diff --git a/README.rst b/README.rst index 2ec4256..50cd3da 100644 --- a/README.rst +++ b/README.rst @@ -1,8 +1,8 @@ .. _readme: -========== -workflowpy -========== +=============== +workflow-python +=============== Workflow handling in pure python. This repository contains the former internal workflow-engine of HydroFlows. @@ -11,9 +11,9 @@ This repository contains the former internal workflow-engine of HydroFlows. .. |status| image:: https://www.repostatus.org/badges/latest/wip.svg :alt: Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. -.. |license| image:: https://img.shields.io/github/license/Deltares-research/workflowpy?style=flat +.. |license| image:: https://img.shields.io/github/license/Deltares-research/workflow-python?style=flat :alt: License - :target: https://github.com/Deltares-research/workflowpy/blob/main/LICENSE + :target: https://github.com/Deltares-research/workflow-python/blob/main/LICENSE .. warning:: This is a **work in progress**! diff --git a/docs/conf.py b/docs/conf.py index 88126ce..ccb9746 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -82,7 +82,7 @@ def remove_dir_content(path: str) -> None: html_context = { "github_url": "https://github.com", "github_user": "deltares-research", - "github_repo": "workflowpy", + "github_repo": "workflow-python", "github_version": "main", # FIXME "doc_path": "docs", "default_mode": "auto", @@ -99,7 +99,7 @@ def remove_dir_content(path: str) -> None: "navbar_align": "content", "show_nav_level": 1, "logo": { - "text": "workflowpy", + "text": "workflow-python", }, "navbar_start": ["navbar-logo"], "header_links_before_dropdown": 6, @@ -108,13 +108,13 @@ def remove_dir_content(path: str) -> None: "icon_links": [ { "name": "GitHub", - "url": "https://github.com/deltares-research/workflowpy", # required + "url": "https://github.com/deltares-research/workflow-python", # required "icon": "fab fa-github", # Font Awesome GitHub icon "type": "fontawesome", }, ], "switcher": { - "json_url": "https://raw.githubusercontent.com/deltares-research/workflowpy/gh-pages/switcher.json", + "json_url": "https://raw.githubusercontent.com/deltares-research/workflow-python/gh-pages/switcher.json", "version_match": doc_version, }, "navbar_end": [ diff --git a/pyproject.toml b/pyproject.toml index 1b9704b..2082318 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ maintainers = [ description = "" license = "MIT" -readme = "README.md" +readme = "README.rst" requires-python = ">=3.11" dependencies = [ @@ -105,8 +105,8 @@ test = [ workflowpy = "workflowpy.cli.main:cli" [project.urls] -"Source" = "https://github.com/deltares-research/workflowpy" -"Bug Reports" = "https://github.com/deltares-research/workflowpy/issues" +"Source" = "https://github.com/deltares-research/workflow-python" +"Bug Reports" = "https://github.com/deltares-research/workflow-python/issues" ## Some stuff for pytest and coverage [tool.pytest.ini_options]