Skip to content

Commit

Permalink
Update contaxy version to 0.0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
NaveenKinnal committed Jan 20, 2023
1 parent 47a7b10 commit 5306a19
Show file tree
Hide file tree
Showing 63 changed files with 8,890 additions and 10,356 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ ENV PYTHONPATH=/resources/app \
RUN mkdir ${_SSL_RESOURCES_PATH}

# Install Contaxy
RUN pip install "contaxy[server]==0.0.22"
RUN pip install "contaxy[server]==0.0.23"
# Uncomment lines below if you want to install your local contaxy code (useful when developing contaxy features)
# By only copying the setup.py first, only the dependencies are installed which leads to faster docker builds on code changes
# COPY ./contaxy/backend/setup.py /resources/app/contaxy/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Information about this library. This file will automatically changed."""

__version__ = "0.0.22"
__version__ = "0.1.0.dev1"
# __author__
# __email__
2 changes: 1 addition & 1 deletion components/lab-mlflow-manager/backend/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
install_requires=[
"fastapi",
"loguru",
"contaxy==0.0.22",
"contaxy==0.0.23",
"email-validator"
],
# deprecated: dependency_links=dependency_links,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Information about this library. This file will automatically changed."""

__version__ = "0.0.22"
__version__ = "0.1.0.dev1"
# __author__
# __email__
2 changes: 1 addition & 1 deletion components/lab-workspace-manager/backend/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
install_requires=[
"fastapi==0.75.2",
"loguru",
"contaxy==0.0.22",
"contaxy==0.0.23",
],
# deprecated: dependency_links=dependency_links,
extras_require={
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Information about this library. This file will automatically changed."""

__version__ = "0.0.22"
__version__ = "0.1.0.dev1"
# __author__
# __email__
2 changes: 1 addition & 1 deletion contaxy
Submodule contaxy updated 85 files
+1 −1 .github/actions/build-environment/Dockerfile
+74 −38 .github/actions/build-environment/extended-entrypoint.sh
+6 −0 backend/.eggs/README.txt
+0 −3,024 backend/Pipfile.lock
+5 −5 backend/docs/contaxy.schema.shared.md
+1 −1 backend/openapi-spec.json
+8 −4 backend/setup.cfg
+4 −1 backend/setup.py
+1 −1 backend/src/contaxy/_about.py
+11 −1 backend/src/contaxy/api/endpoints/deployment.py
+28 −2 backend/src/contaxy/api/endpoints/file.py
+4 −0 backend/src/contaxy/clients/deployment.py
+6 −1 backend/src/contaxy/clients/file.py
+2 −2 backend/src/contaxy/managers/auth.py
+5 −3 backend/src/contaxy/managers/deployment/docker_utils.py
+1 −1 backend/src/contaxy/managers/deployment/kubernetes.py
+18 −5 backend/src/contaxy/managers/deployment/manager.py
+1 −1 backend/src/contaxy/managers/deployment/utils.py
+37 −20 backend/src/contaxy/managers/file/azure_blob.py
+27 −10 backend/src/contaxy/managers/file/minio.py
+1 −1 backend/src/contaxy/managers/json_db/inmemory_dict.py
+5 −3 backend/src/contaxy/managers/json_db/postgres.py
+6 −2 backend/src/contaxy/operations/deployment.py
+7 −2 backend/src/contaxy/operations/file.py
+2 −2 backend/src/contaxy/schema/file.py
+0 −10 backend/src/contaxy/schema/shared.py
+44 −0 backend/tests/test_deployment_operations.py
+74 −1 backend/tests/test_file_operations.py
+4 −0 build_requirements.txt
+3 −3 js-client/ApiClient.js
+2 −2 js-client/api/AuthApi.js
+2 −2 js-client/api/ExtensionsApi.js
+2 −2 js-client/api/FilesApi.js
+2 −2 js-client/api/JobsApi.js
+2 −2 js-client/api/JsonApi.js
+2 −2 js-client/api/ProjectsApi.js
+2 −2 js-client/api/ServicesApi.js
+2 −2 js-client/api/SystemApi.js
+2 −2 js-client/api/UsersApi.js
+2 −2 js-client/index.js
+1 −1 js-client/model/AccessLevel.js
+2 −2 js-client/model/AccessToken.js
+2 −2 js-client/model/AllowedImageInfo.js
+2 −2 js-client/model/ApiToken.js
+2 −2 js-client/model/AuthorizedAccess.js
+2 −2 js-client/model/BodyIntrospectToken.js
+2 −2 js-client/model/BodyLoginUserSession.js
+2 −2 js-client/model/BodyRegisterAdminUserSystemAdminPost.js
+2 −2 js-client/model/BodyRequestToken.js
+2 −2 js-client/model/BodyRevokeToken.js
+2 −2 js-client/model/BodyUploadFileProjectsProjectIdFilesFileKeyPost.js
+2 −2 js-client/model/Compute.js
+2 −2 js-client/model/DeploymentCompute.js
+1 −1 js-client/model/DeploymentStatus.js
+1 −1 js-client/model/DeploymentType.js
+2 −11 js-client/model/Extension.js
+2 −2 js-client/model/ExtensionInput.js
+1 −1 js-client/model/ExtensionType.js
+2 −11 js-client/model/File.js
+2 −2 js-client/model/FileInput.js
+2 −11 js-client/model/Job.js
+2 −2 js-client/model/JobInput.js
+2 −2 js-client/model/JsonDocument.js
+2 −2 js-client/model/OAuth2ErrorDetails.js
+2 −2 js-client/model/OAuthToken.js
+2 −2 js-client/model/OAuthTokenIntrospection.js
+2 −2 js-client/model/ProblemDetails.js
+2 −11 js-client/model/Project.js
+2 −2 js-client/model/ProjectCreation.js
+2 −2 js-client/model/ProjectInput.js
+2 −2 js-client/model/ResourceAction.js
+2 −2 js-client/model/ResourceActionExecution.js
+2 −2 js-client/model/ResponseListUsersInner.js
+2 −11 js-client/model/Service.js
+2 −2 js-client/model/ServiceInput.js
+2 −2 js-client/model/ServiceUpdate.js
+2 −2 js-client/model/SystemInfo.js
+1 −1 js-client/model/SystemState.js
+2 −2 js-client/model/SystemStatistics.js
+1 −1 js-client/model/TokenType.js
+2 −2 js-client/model/User.js
+2 −2 js-client/model/UserInput.js
+2 −2 js-client/model/UserPermission.js
+2 −2 js-client/model/UserRead.js
+2 −2 js-client/model/UserRegistration.js
Loading

0 comments on commit 5306a19

Please sign in to comment.