From 9a345a4d4d005f3f3af366907ef5b79bded0178f Mon Sep 17 00:00:00 2001 From: SpanishST Date: Fri, 27 Jun 2025 15:12:32 +0200 Subject: [PATCH] Bump version to 0.2.0, update Python requirement to >=3.9, and refine dependencies in pyproject.toml; fix typo in __all__ declaration in __init__.py --- pyproject.toml | 11 +++++------ src/hueclientrest/__init__.py | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cac9c57..97f757e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,21 +4,20 @@ build-backend = "setuptools.build_meta" [project] name = "hueclientrest" -version = "0.1.4" +version = "0.2.0" authors = [ {name = "Ramon LOPEZ", email = "ramon.lopez@outlook.fr"}, ] description = "A Python REST client for interacting with Hadoop Hue's REST API" readme = "README.md" license = {text = "GPL-3.0"} -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -26,9 +25,9 @@ classifiers = [ ] keywords = ["hue", "hadoop", "package", "python"] dependencies = [ - "requests>=2.32.3", - "urllib3>=2.3.0" -] + "requests>=2.28.0,<3.0.0", + "urllib3>=1.26.0,<3.0.0" +] [project.optional-dependencies] diff --git a/src/hueclientrest/__init__.py b/src/hueclientrest/__init__.py index fcafebb..e60f00c 100644 --- a/src/hueclientrest/__init__.py +++ b/src/hueclientrest/__init__.py @@ -1,3 +1,3 @@ from .core import HueClientREST -___all__ = ["HueClientREST"] \ No newline at end of file +__all__ = ["HueClientREST"] \ No newline at end of file