Skip to content

Commit

Permalink
SEOD-1326. Specify extras names and the library dependencies for them…
Browse files Browse the repository at this point in the history
… under tool.poetry.extras
  • Loading branch information
AzisK committed Oct 6, 2023
1 parent dc885b7 commit 7af287d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Changelog is organized by the version of this library, commit date and main poin

2023 September

#### [8.0.2] - 2023-09-06
- Specify extras names and the library dependencies for them under tool.poetry.extras

#### [8.0.1] - 2023-09-06
- Describe all the necessary group dependencies in `pyproject.toml` as none of other than Vertica and Snowflake libraries have been included in the published library
- Add newly installed libraries to `poetry.lock`
Expand Down
11 changes: 10 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fireant"
version = "8.0.1"
version = "8.0.2"
description = ""
authors = ["Ąžuolas Krušna <[email protected]>"]
readme = "README.rst"
Expand Down Expand Up @@ -46,6 +46,15 @@ vertica-python = "^1.0.0"
matplotlib = ">=3.1.0"
ipython = ">=7.11"

[tool.poetry.extras]
ipython=["matplotlib", "ipython"]
vertica=["vertica-python"]
snowflake=["snowflake-connector-python"]
redshift=["psycopg2-binary"]
postgresql=["psycopg2-binary"]
mysql=["pymysql"]
mssql=["cython", "pymssql"]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 8.0.1
current_version = 8.0.2
commit = True
tag = True

Expand Down

0 comments on commit 7af287d

Please sign in to comment.