From 79d494767850287294001e17d969a710e3e0da0a Mon Sep 17 00:00:00 2001 From: Taleb Zeghmi <4167032+talebzeghmi@users.noreply.github.com> Date: Thu, 8 Dec 2022 12:11:05 -0800 Subject: [PATCH] AIP-6913 support Py3.8 (#34) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bc3b1c9..2c4ab7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "zdatasets" -version = "0.2.3" +version = "0.2.4" description = "Dataset SDK for consistent read/write [batch, online, streaming] data." classifiers = [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", - "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.8", ] authors = ["Taleb Zeghmi"] readme = "README.md" @@ -26,7 +26,7 @@ hive_dataset = "datasets.plugins:HiveDataset" metaflow_executor = "datasets.plugins:MetaflowExecutor" [tool.poetry.dependencies] -python = ">=3.9.0,<4" +python = ">=3.8.0,<4" pandas = ">=1.1.0" pyarrow = ">=6.0.0" dask = { version = ">=2021.9.1", optional = true }