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 support for templates #13

Merged
merged 45 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
3b98921
add jinja2 to pkg requirements.
Apr 14, 2023
6330447
add jinja templates for datacard
Apr 14, 2023
d264979
Add template fixture.
Apr 14, 2023
0dc94e4
Add second language to template.
Apr 14, 2023
e6387b7
Allow file system backend in publicaton property.
Apr 14, 2023
010d597
add template rendering code.
Apr 14, 2023
ea11fe2
Add initial Datacard class implementation.
Apr 14, 2023
ffd3566
Add happy flow unit test.
Apr 14, 2023
281c81f
get creator from package info.
Apr 14, 2023
1d0ed0a
Ensure flake8.
Apr 14, 2023
a840c7a
Start using pre-commit.
Apr 14, 2023
72af801
Remove test that has directory side effect.
Apr 14, 2023
5dc58dd
Add datasets page.
Apr 17, 2023
7faa4c8
yet another way to obtain authors.
Apr 18, 2023
90b4866
Replace function by wrapper.
Apr 18, 2023
cedbfbf
Export DataCard.
Apr 18, 2023
8a54201
Use Datacard export in test.
Apr 18, 2023
5ab7b0e
Update audbcards/core/dataset.py
ChristianGeng Sep 22, 2023
d29774c
Assert basic similarity in jinja generated result.
Sep 22, 2023
77fdad7
Fix intentation bug. Remove dead code.
Sep 22, 2023
09962e3
Update audbcards/core/dataset.py
ChristianGeng Sep 22, 2023
f5283de
Add docstring to save function.
Sep 22, 2023
8364857
clarifiy naming of outfiles for dataset page.
Sep 22, 2023
b82a5db
Delete old comment.
Sep 22, 2023
7cdd2f8
Update audbcards/core/dataset.py
ChristianGeng Sep 22, 2023
4f4f395
give tests for datacard better name.
Sep 25, 2023
35c9c72
Merge branch 'main' into 5-add-support-for-templates
Sep 25, 2023
7989488
reorginaize test data.
Sep 25, 2023
ffac9df
remove method paralleling old implementation, cached property.
Sep 25, 2023
e81e739
Adapt tests.
Sep 25, 2023
e2ffb35
Attempt1 to fix packages structure.
Sep 26, 2023
2abdd9b
Merge branch '5-add-support-for-templates' of github.com:audeering/au…
Sep 26, 2023
3bfb043
Update templates (#19)
hagenw Sep 26, 2023
b8afc7a
Use correct default location to store datacard rst file.
Sep 26, 2023
d819f59
Make diff more permissive to pass all tests.
Sep 26, 2023
79a8fdf
Merge branch 'main' into 5-add-support-for-templates
Sep 26, 2023
dba4a7c
Update audbcards/core/dataset.py
ChristianGeng Sep 27, 2023
b1b4710
Add comment on similarity approach.
Sep 27, 2023
fd7124f
Update tests/test_datacard.py
ChristianGeng Sep 27, 2023
99330ad
Update tests/conftest.py
ChristianGeng Sep 27, 2023
9832e81
Update audbcards/core/dataset.py
ChristianGeng Sep 27, 2023
8ffbfb9
Update audbcards/core/dataset.py
ChristianGeng Sep 27, 2023
cc5cb6e
Update template test and fix issues
hagenw Sep 28, 2023
73f88e6
Add comment
hagenw Sep 28, 2023
792feb0
Fix failing test
hagenw Sep 29, 2023
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
1 change: 1 addition & 0 deletions audbcards/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from audbcards.core.dataset import (
Dataset,
Datacard,
)


Expand Down
Loading