mirror of
https://github.com/iluvcapra/pycmx.git
synced 2025-12-31 08:50:54 +00:00
fix __all__ for module
This commit is contained in:
3
.github/workflows/python-package.yml
vendored
3
.github/workflows/python-package.yml
vendored
@@ -30,8 +30,7 @@ jobs:
|
|||||||
- name: Lint with flake8
|
- name: Lint with flake8
|
||||||
run: |
|
run: |
|
||||||
# stop the build if there are Python syntax errors or undefined names
|
# stop the build if there are Python syntax errors or undefined names
|
||||||
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
ruff check src/
|
||||||
flake8 . --count --max-line-length=79 --statistics
|
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: |
|
run: |
|
||||||
pytest
|
pytest
|
||||||
|
|||||||
@@ -32,8 +32,7 @@ doc = [
|
|||||||
'sphinx_rtd_theme >= 1.1.1'
|
'sphinx_rtd_theme >= 1.1.1'
|
||||||
]
|
]
|
||||||
dev = [
|
dev = [
|
||||||
'flake8',
|
'pytest',
|
||||||
'pytest'
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
@@ -43,6 +42,9 @@ Repository = "https://github.com/iluvcapra/pycmx.git"
|
|||||||
Tracker = "https://github.com/iluvcapra/pycmx/issues"
|
Tracker = "https://github.com/iluvcapra/pycmx/issues"
|
||||||
|
|
||||||
[dependency-groups]
|
[dependency-groups]
|
||||||
|
dev = [
|
||||||
|
"ruff>=0.14.10",
|
||||||
|
]
|
||||||
doc = ['sphinx', 'sphinx_rtd_theme']
|
doc = ['sphinx', 'sphinx_rtd_theme']
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -11,3 +11,5 @@ from .parse_cmx_events import parse_cmx3600
|
|||||||
from .transition import Transition
|
from .transition import Transition
|
||||||
from .event import Event
|
from .event import Event
|
||||||
from .edit import Edit
|
from .edit import Edit
|
||||||
|
|
||||||
|
__all__ = ("parse_cmx3600", "Transition", "Event", "Edit")
|
||||||
|
|||||||
Reference in New Issue
Block a user