Skip to content

Commit d864968

Browse files
authored
Merge pull request #2 from SpanishST/0.2.0
Bump version to 0.2.0, update Python requirement to >=3.9, and refine…
2 parents ae81126 + 9a345a4 commit d864968

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,30 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hueclientrest"
7-
version = "0.1.4"
7+
version = "0.2.0"
88
authors = [
99
{name = "Ramon LOPEZ", email = "ramon.lopez@outlook.fr"},
1010
]
1111
description = "A Python REST client for interacting with Hadoop Hue's REST API"
1212
readme = "README.md"
1313
license = {text = "GPL-3.0"}
14-
requires-python = ">=3.8"
14+
requires-python = ">=3.9"
1515
classifiers = [
1616
"Development Status :: 3 - Alpha",
1717
"Intended Audience :: Developers",
1818
"License :: OSI Approved :: MIT License",
1919
"Operating System :: OS Independent",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
2625
]
2726
keywords = ["hue", "hadoop", "package", "python"]
2827
dependencies = [
29-
"requests>=2.32.3",
30-
"urllib3>=2.3.0"
31-
]
28+
"requests>=2.28.0,<3.0.0",
29+
"urllib3>=1.26.0,<3.0.0"
30+
]
3231

3332

3433
[project.optional-dependencies]

src/hueclientrest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .core import HueClientREST
22

3-
___all__ = ["HueClientREST"]
3+
__all__ = ["HueClientREST"]

0 commit comments

Comments
 (0)