Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add myst-parser to docs requirements #111

Merged
merged 2 commits into from
Dec 2, 2024
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
8 changes: 3 additions & 5 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,16 @@ schema-salad[pycodegen]
# Needs to validate v1.2
cwltool>=3.0.20200807132242


# To check type annotations
mypy

# For testing
tox
pytest
coverage

# For dev
sphinx
sphinx_rtd_theme
myst-parser
# To build docs
-r docs/requirements.txt

# Used to check readme.
readme
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
myst-parser
sphinx
sphinx-rtd-theme
7 changes: 1 addition & 6 deletions gxformat2/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,14 @@
Union,
)

from typing_extensions import (
Literal,
TypedDict,
)
from typing_extensions import Literal

log = logging.getLogger(__name__)

DictOrList = Union[Dict, List]
ConnectDict = dict


EmbeddedLink = TypedDict("EmbeddedLink", {"$link": str})

NativeGalaxyStepType = Literal[
"subworkflow",
"data_input",
Expand Down
Loading