Skip to content

Commit 6c5e58b

Browse files
committed
Post-Release 0.0.1
1 parent 4e94514 commit 6c5e58b

File tree

4 files changed

+24
-21
lines changed

4 files changed

+24
-21
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,3 +149,4 @@ checklink/cookies.txt
149149

150150
# Quarto
151151
.quarto
152+
token

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Release notes
2+
3+
<!-- do not remove -->
4+
5+
## 0.0.1
6+
7+
First Release!
8+

settings.ini

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,37 @@
11
[DEFAULT]
2-
# All sections below are required unless otherwise specified.
3-
# See https://github.com/fastai/nbdev/blob/master/settings.ini for examples.
4-
5-
### Python library ###
62
repo = python-vector
73
lib_name = timescale-vector
8-
version = 0.0.1
4+
version = 0.0.2
95
min_python = 3.7
106
license = apache2
117
black_formatting = False
12-
13-
### nbdev ###
148
doc_path = _docs
159
lib_path = timescale_vector
1610
nbs_path = nbs
1711
recursive = True
1812
tst_flags = notest
1913
put_version_in_init = True
20-
21-
### Docs ###
2214
branch = main
2315
custom_sidebar = False
24-
doc_host = https://%(user)s.github.io
25-
doc_baseurl = /%(repo)s
26-
git_url = https://github.com/%(user)s/%(repo)s
27-
title = %(lib_name)s
28-
29-
### PyPI ###
16+
doc_host = https://timescale.github.io
17+
doc_baseurl = /python-vector
18+
git_url = https://github.com/timescale/python-vector
19+
title = timescale-vector
3020
audience = Developers
3121
author = Matvey Arye
3222
author_email = [email protected]
33-
copyright = 2023 onwards, %(author)s
23+
copyright = 2023 onwards, Matvey Arye
3424
description = Python library for storing vector data in Postgres
3525
keywords = nbdev jupyter notebook python
3626
language = English
3727
status = 3
3828
user = timescale
39-
40-
### Optional ###
4129
requirements = asyncpg psycopg2 pgvector
42-
dev_requirements = python-dotenv
43-
# console_scripts =
30+
dev_requirements = python-dotenv
31+
readme_nb = index.ipynb
32+
allowed_metadata_keys =
33+
allowed_cell_metadata_keys =
34+
jupyter_hooks = True
35+
clean_ids = True
36+
clear_all = False
37+

timescale_vector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.0.2"

0 commit comments

Comments
 (0)