Skip to content

Commit

Permalink
bump version to 0.2.14 (#51)
Browse files Browse the repository at this point in the history
* bump version to 0.2.14

* bump version
  • Loading branch information
jeppe742 authored Sep 19, 2023
1 parent f598b1a commit b02942f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion deltalake/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.2.13"
__version__ = "0.2.14"
from deltalake.deltatable import DeltaTable # noqa: F401
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tool.poetry]
name = "delta-lake-reader"
version = "0.2.13"
version = "0.2.14"
description = "Lightweight wrapper for reading Delta tables without Spark"
authors = ["Jeppe Johan Waarkjær Olsen <jeppe742@gmail.com>"]
packages= [{include="deltalake"}]
packages = [{ include = "deltalake" }]
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/jeppe742/DeltaLakeReader"
Expand All @@ -13,10 +13,10 @@ python = "^3.7.1"
pyarrow = "^9.0.0"
fsspec = "^2022"
#pip = "^21.0.1"
adlfs = {version = "^2022", optional = true}
aiohttp = {version = "^3.7.3", optional = true}
s3fs = {version = "^2022", optional = true}
gcsfs = {version = "^2022", optional = true}
adlfs = { version = "^2022", optional = true }
aiohttp = { version = "^3.7.3", optional = true }
s3fs = { version = "^2022", optional = true }
gcsfs = { version = "^2022", optional = true }
pandas = "^1.3.1"

[tool.poetry.dev-dependencies]
Expand All @@ -32,7 +32,7 @@ pytest-rerunfailures = "^9.1.1"
pytest-sugar = "^0.9.4"

[tool.poetry.extras]
azure = ["adlfs","aiohttp"]
azure = ["adlfs", "aiohttp"]
aws = ["s3fs"]
gcp = ["gcsfs"]

Expand Down
2 changes: 1 addition & 1 deletion tests/test_deltatable_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


def test_version():
assert __version__ == "0.2.13"
assert __version__ == "0.2.14"


class DeltaReaderAppendTest(TestCase):
Expand Down

0 comments on commit b02942f

Please sign in to comment.