Skip to content
Snippets Groups Projects
Verified Commit a2989157 authored by Martin Weise's avatar Martin Weise
Browse files
parent 44cf96b2
No related branches found
No related tags found
1 merge request!411WIP
Showing
with 1374 additions and 1319 deletions
......@@ -21,7 +21,7 @@ numpy = "*"
pandas = "*"
minio = "*"
pydantic = "*"
dbrepo = {path = "./lib/dbrepo-1.8.2rc3.tar.gz"}
dbrepo = {path = "./lib/dbrepo-1.8.2.tar.gz"}
opensearch-py = "*"
[dev-packages]
......
This diff is collapsed.
File added
File deleted
......@@ -12,7 +12,7 @@ prometheus-flask-exporter = "*"
python-dotenv = "~=1.0"
jwt = "~=1.3"
pytest = "*"
dbrepo = {path = "./lib/dbrepo-1.8.2rc3.tar.gz"}
dbrepo = {path = "./lib/dbrepo-1.8.2.tar.gz"}
gunicorn = "*"
pydantic = "*"
flask_httpauth = "*"
......
This diff is collapsed.
File added
File deleted
......@@ -17,7 +17,7 @@ flask_httpauth = "*"
jwt = "~=1.3"
rdflib = "*"
grafana-client = "*"
dbrepo = {path = "./lib/dbrepo-1.8.2rc3.tar.gz"}
dbrepo = {path = "./lib/dbrepo-1.8.2.tar.gz"}
gunicorn = "*"
[dev-packages]
......
This diff is collapsed.
File added
File deleted
No preview for this file type
[project]
name = "dbrepo"
version = "1.8.2rc3"
version = "1.8.2"
description = "DBRepo Python Library"
keywords = [
"DBRepo",
......
......@@ -2,7 +2,7 @@
from distutils.core import setup
setup(name="dbrepo",
version="1.8.2rc3",
version="1.8.2",
description="A library for communicating with DBRepo",
url="https://www.ifs.tuwien.ac.at/infrastructures/dbrepo/1.8/",
author="Martin Weise",
......
......@@ -23,17 +23,15 @@ build-ui: ## Build the UI.
.PHONY: build-python-lib
build-python-lib: ## Build the Python Library.
rm -rf ./dbrepo-analyse-service/venv/ ./dbrepo-analyse-service/Pipfile.lock ./dbrepo-analyse-service/lib/*
rm -rf ./dbrepo-search-service/venv/ ./dbrepo-search-service/Pipfile.lock ./dbrepo-search-service/lib/*
rm -rf ./dbrepo-dashboard-service/venv/ ./dbrepo-dashboard-service/Pipfile.lock ./dbrepo-dashboard-service/lib/*
rm -rf ./dbrepo-analyse-service/lib/* ./dbrepo-search-service/lib/* ./dbrepo-dashboard-service/lib/*
python3 -m build --sdist ./lib/python
python3 -m build --wheel ./lib/python
cp -r ./lib/python/dist/dbrepo-${APP_VERSION}* ./dbrepo-analyse-service/lib
(cd ./dbrepo-analyse-service && PIPENV_IGNORE_VIRTUALENVS=1 pipenv install --dev)
PIPENV_PIPFILE=./dbrepo-analyse-service/Pipfile pipenv lock
cp -r ./lib/python/dist/dbrepo-${APP_VERSION}* ./dbrepo-search-service/lib
(cd ./dbrepo-search-service && PIPENV_IGNORE_VIRTUALENVS=1 pipenv install --dev)
PIPENV_PIPFILE=./dbrepo-search-service/Pipfile pipenv lock
cp -r ./lib/python/dist/dbrepo-${APP_VERSION}* ./dbrepo-dashboard-service/lib
(cd ./dbrepo-dashboard-service && PIPENV_IGNORE_VIRTUALENVS=1 pipenv install --dev)
PIPENV_PIPFILE=./dbrepo-dashboard-service/Pipfile pipenv lock
.PHONY: build-helm
build-helm: ## Build the DBRepo and DBRepo MariaDB Galera Helm Charts.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment