From 978d8a367a7786384038913d7395524bc7882278 Mon Sep 17 00:00:00 2001 From: NguyenHoangSon96 Date: Tue, 27 May 2025 17:56:33 +0700 Subject: [PATCH 1/4] feat: wip --- tests/test_Helpers.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_Helpers.py b/tests/test_Helpers.py index d06f9110..47d81c87 100644 --- a/tests/test_Helpers.py +++ b/tests/test_Helpers.py @@ -56,5 +56,4 @@ def test_not_permission_to_read_org(self): with pytest.raises(InfluxDBError) as e: get_org_query_param("my-org", self.client, required_id=True) - assert "The client cannot find organization with name: 'my-org' to determine their ID. Are you using token " \ - "with sufficient permission?" in f"{e.value} " + assert "The client cannot find organization with name: 'my-org' to determine their ID" in f"{e.value} " From d666e443aa6252d4268e64b82fb61367613d2d58 Mon Sep 17 00:00:00 2001 From: NguyenHoangSon96 Date: Wed, 28 May 2025 07:53:22 +0700 Subject: [PATCH 2/4] feat: wip --- tests/test_Helpers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_Helpers.py b/tests/test_Helpers.py index 47d81c87..d06f9110 100644 --- a/tests/test_Helpers.py +++ b/tests/test_Helpers.py @@ -56,4 +56,5 @@ def test_not_permission_to_read_org(self): with pytest.raises(InfluxDBError) as e: get_org_query_param("my-org", self.client, required_id=True) - assert "The client cannot find organization with name: 'my-org' to determine their ID" in f"{e.value} " + assert "The client cannot find organization with name: 'my-org' to determine their ID. Are you using token " \ + "with sufficient permission?" in f"{e.value} " From af744991097254827ee1f3b391b8a09e4227d4e1 Mon Sep 17 00:00:00 2001 From: NguyenHoangSon96 Date: Sun, 1 Jun 2025 09:25:37 +0700 Subject: [PATCH 3/4] feat: wip --- pyproject.toml | 3 +++ setup.py | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..20c12656 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=21.0.0"] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/setup.py b/setup.py index cda0d087..76c2748c 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,6 @@ 'reactivex >= 4.0.4', 'certifi >= 14.05.14', 'python_dateutil >= 2.5.3', - 'setuptools >= 21.0.0', 'urllib3 >= 1.26.0' ] From 48619c4e528b1306e84cdc73a841923ce62a48d7 Mon Sep 17 00:00:00 2001 From: NguyenHoangSon96 Date: Sun, 1 Jun 2025 09:52:44 +0700 Subject: [PATCH 4/4] feat: wip --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index af872d37..3da5e8ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## 1.50.0 [unreleased] +### Features + +1. [696](https://github.com/influxdata/influxdb-client-python/pull/696): Move "setuptools" package to build dependency. + ## 1.49.0 [2025-05-22] ### Bug Fixes