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
7 changes: 7 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Changes:
- ...


## TODO:
- [ ] Update the version of pephub in the `__version__.py` file
- [ ] Update the changelog
2 changes: 1 addition & 1 deletion pephub/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@

CALLBACK_ENDPOINT = "/auth/callback"

DEFAULT_PEP_SCHEMA = "databio/pep-2.1.0"
DEFAULT_PEP_SCHEMA = "databio/pep:2.1.0"
DEFAULT_TAG = "default"

DEFAULT_QDRANT_SCORE_THRESHOLD = (
Expand Down
2 changes: 1 addition & 1 deletion pephub/routers/api/v1/namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ async def create_pep(
tag=tag,
description=description,
is_private=is_private,
pep_schema=pep_schema or "databio/pep-2.1.0",
pep_schema=pep_schema or "databio/pep:2.1.0",
)
except ProjectUniqueNameError:
raise HTTPException(
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/forms/project-upload-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export const ProjectUploadForm = ({ onHide, defaultNamespace }: Props) => {
isPrivate,
description,
files: uploadFiles,
pepSchema: pepSchema || 'databio/pep-2.1.0',
pepSchema: pepSchema || 'databio/pep:2.1.0',
},
{
onSuccess: () => {
Expand Down
Loading