Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bugs.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: Bugs
description: Broken elements within workflowpy
description: Broken elements within workflow-python
# title: "BUG: "
labels: [bug]

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
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Feature Request
description: Propose an improvement for workflowpy
description: Propose an improvement for workflow-python
# title: "Improvement: "
labels: [enhancement]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.. _readme:

==========
workflowpy
==========
===============
workflow-python
===============
Workflow handling in pure python.
This repository contains the former internal workflow-engine of HydroFlows.

Expand All @@ -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**!
Expand Down
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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,
Expand All @@ -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": [
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ maintainers = [

description = ""
license = "MIT"
readme = "README.md"
readme = "README.rst"

requires-python = ">=3.11"
dependencies = [
Expand Down Expand Up @@ -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]
Expand Down
Loading