Skip to content
Snippets Groups Projects
Commit 09da19db authored by Martin Weise's avatar Martin Weise
Browse files

Merge branch 'release-latest' into release-1.4.2

parents fe87919c 46d4eab4
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,8 @@ print(f"Analysis result: {analysis}") ...@@ -33,7 +33,8 @@ print(f"Analysis result: {analysis}")
# create table # create table
table = client.create_table(database_id=1, table = client.create_table(database_id=1,
name="Sensor Data", name="Sensor Data",
constraints=CreateTableConstraints(checks=['precipitation >= 0'], constraints=CreateTableConstraints(
checks=['precipitation >= 0'],
uniques=[['precipitation']]), uniques=[['precipitation']]),
columns=[CreateTableColumn(name="date", columns=[CreateTableColumn(name="date",
type=ColumnType.DATE, type=ColumnType.DATE,
......
[project] [project]
name = "dbrepo" name = "dbrepo"
version = "1.4.2rc5" version = "__APPVERSION__"
description = "DBRepo Python Library" description = "DBRepo Python Library"
keywords = [ keywords = [
"DBRepo", "DBRepo",
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
from distutils.core import setup from distutils.core import setup
setup(name="dbrepo", setup(name="dbrepo",
version="1.4.2rc5", version="__APPVERSION__",
description="A library for communicating with DBRepo", description="A library for communicating with DBRepo",
url="https://www.ifs.tuwien.ac.at/infrastructures/dbrepo//", url="https://www.ifs.tuwien.ac.at/infrastructures/dbrepo//",
author="Martin Weise", author="Martin Weise",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment