Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nleroy917 committed Jan 11, 2024
1 parent 0b1e92f commit 471fb7d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pephub/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.11.0rc1"
__version__ = "0.11.0rc2"
2 changes: 0 additions & 2 deletions pephub/routers/api/v1/namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@
from ....dependencies import (
get_db,
get_namespace_info,
get_user_from_session_info,
read_authorization_header,
get_organizations_from_session_info,
get_namespace_access_list,
verify_user_can_write_namespace,
)
Expand Down
6 changes: 3 additions & 3 deletions pephub/routers/api/v1/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


from ...models import ProjectOptional, ProjectRawModel, ForkRequest
from ....helpers import zip_conv_result, get_project_sample_names, zip_pep
from ....helpers import zip_conv_result, zip_pep
from ....dependencies import (
get_db,
get_project,
Expand Down Expand Up @@ -541,7 +541,7 @@ async def upload_sample(
except Exception:
raise HTTPException(
status_code=400,
detail=f"Could not upload sample. Server error!",
detail="Could not upload sample. Server error!",
)


Expand Down Expand Up @@ -577,7 +577,7 @@ async def delete_sample(
except Exception:
raise HTTPException(
status_code=400,
detail=f"Could not delete sample. Server error!",
detail="Could not delete sample. Server error!",
)


Expand Down

0 comments on commit 471fb7d

Please sign in to comment.