From 805c61d0f61b292bbf68a49af5e88cd51517860e Mon Sep 17 00:00:00 2001 From: Nick Woolmer <29717167+nwoolmer@users.noreply.github.com> Date: Mon, 31 Mar 2025 23:47:42 +0100 Subject: [PATCH 1/9] bumping version --- .bumpversion.cfg | 2 +- CHANGELOG.rst | 4 ++++ docs/conf.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- src/questdb/__init__.py | 2 +- src/questdb/ingress.pyx | 2 +- test/system_test.py | 2 +- 8 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ddeea7a..26ae756 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.3 +current_version = 2.0.4 commit = True tag = False diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 46c8b76..0e58f69 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,10 @@ Changelog ========= +2.0.4 (31-03-25) + +Building for Python 3.13. + 2.0.3 (2024-06-06) ------------------ diff --git a/docs/conf.py b/docs/conf.py index 0b32d8f..edcf176 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,7 @@ year = '2024' author = 'QuestDB' copyright = '{0}, {1}'.format(year, author) -version = release = '2.0.3' +version = release = '2.0.4' github_repo_url = 'https://github.com/questdb/py-questdb-client' diff --git a/pyproject.toml b/pyproject.toml index 7017bc1..56cf6f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ # See: https://packaging.python.org/en/latest/specifications/declaring-project-metadata/ name = "questdb" requires-python = ">=3.8" -version = "2.0.3" +version = "2.0.4" description = "QuestDB client library for Python" readme = "README.rst" classifiers = [ diff --git a/setup.py b/setup.py index 6f453d2..2d0ec2b 100755 --- a/setup.py +++ b/setup.py @@ -165,7 +165,7 @@ def readme(): setup( name='questdb', - version='2.0.3', + version='2.0.4', platforms=['any'], python_requires='>=3.8', install_requires=[], diff --git a/src/questdb/__init__.py b/src/questdb/__init__.py index e7c12d2..f593cd5 100644 --- a/src/questdb/__init__.py +++ b/src/questdb/__init__.py @@ -1 +1 @@ -__version__ = '2.0.3' +__version__ = '2.0.4' diff --git a/src/questdb/ingress.pyx b/src/questdb/ingress.pyx index 51f263d..9af2238 100644 --- a/src/questdb/ingress.pyx +++ b/src/questdb/ingress.pyx @@ -86,7 +86,7 @@ import os # This value is automatically updated by the `bump2version` tool. # If you need to update it, also update the search definition in # .bumpversion.cfg. -VERSION = '2.0.3' +VERSION = '2.0.4' cdef bint _has_gil(PyThreadState** gs): diff --git a/test/system_test.py b/test/system_test.py index 913ab07..1f79769 100755 --- a/test/system_test.py +++ b/test/system_test.py @@ -26,7 +26,7 @@ import questdb.ingress as qi -QUESTDB_VERSION = '8.1.0' +QUESTDB_VERSION = '8.2.3' QUESTDB_PLAIN_INSTALL_PATH = None QUESTDB_AUTH_INSTALL_PATH = None From 95ee7050b930695a616b46eabe52921c4d3e7a40 Mon Sep 17 00:00:00 2001 From: Nick Woolmer <29717167+nwoolmer@users.noreply.github.com> Date: Tue, 1 Apr 2025 00:29:54 +0100 Subject: [PATCH 2/9] update to 8.2.1 from 8.1.0, instead of 8.2.3 --- proj | 2 +- test/system_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proj b/proj index 9782abe..d4c8009 100755 --- a/proj +++ b/proj @@ -1,2 +1,2 @@ -#!/bin/sh +#!/bin/bash python3 proj.py "$@" diff --git a/test/system_test.py b/test/system_test.py index 1f79769..b6e8b42 100755 --- a/test/system_test.py +++ b/test/system_test.py @@ -26,7 +26,7 @@ import questdb.ingress as qi -QUESTDB_VERSION = '8.2.3' +QUESTDB_VERSION = '8.2.1' QUESTDB_PLAIN_INSTALL_PATH = None QUESTDB_AUTH_INSTALL_PATH = None From fa0c5dd4d83721be7d455fb1ffc7f551b5ba6f21 Mon Sep 17 00:00:00 2001 From: Nick Woolmer <29717167+nwoolmer@users.noreply.github.com> Date: Wed, 2 Apr 2025 08:54:50 +0100 Subject: [PATCH 3/9] test if same failure occurs on ci --- test/system_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system_test.py b/test/system_test.py index b6e8b42..913ab07 100755 --- a/test/system_test.py +++ b/test/system_test.py @@ -26,7 +26,7 @@ import questdb.ingress as qi -QUESTDB_VERSION = '8.2.1' +QUESTDB_VERSION = '8.1.0' QUESTDB_PLAIN_INSTALL_PATH = None QUESTDB_AUTH_INSTALL_PATH = None From 1aa74e89502ca55cafa7bc28f345f6e6fe66bb1d Mon Sep 17 00:00:00 2001 From: Nick Woolmer <29717167+nwoolmer@users.noreply.github.com> Date: Wed, 2 Apr 2025 09:09:44 +0100 Subject: [PATCH 4/9] debugging --- test/system_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system_test.py b/test/system_test.py index 913ab07..1f79769 100755 --- a/test/system_test.py +++ b/test/system_test.py @@ -26,7 +26,7 @@ import questdb.ingress as qi -QUESTDB_VERSION = '8.1.0' +QUESTDB_VERSION = '8.2.3' QUESTDB_PLAIN_INSTALL_PATH = None QUESTDB_AUTH_INSTALL_PATH = None From a42005d75e6f43fe1a138082647aaf534770aad8 Mon Sep 17 00:00:00 2001 From: Nick Woolmer <29717167+nwoolmer@users.noreply.github.com> Date: Wed, 2 Apr 2025 09:26:16 +0100 Subject: [PATCH 5/9] debugging --- c-questdb-client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c-questdb-client b/c-questdb-client index f97c4cb..753548b 160000 --- a/c-questdb-client +++ b/c-questdb-client @@ -1 +1 @@ -Subproject commit f97c4cb164ef357560a92c8681438df5f7452bb6 +Subproject commit 753548b431fcdfb7937a55b5c1541d00c0639c52 From b5438cfcd1cbd127543ae4fb967107d40876f0d9 Mon Sep 17 00:00:00 2001 From: Nick Woolmer <29717167+nwoolmer@users.noreply.github.com> Date: Wed, 2 Apr 2025 10:44:16 +0100 Subject: [PATCH 6/9] debugging --- c-questdb-client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c-questdb-client b/c-questdb-client index 753548b..cdd1ea5 160000 --- a/c-questdb-client +++ b/c-questdb-client @@ -1 +1 @@ -Subproject commit 753548b431fcdfb7937a55b5c1541d00c0639c52 +Subproject commit cdd1ea52d0d41335d13a7555b3956d769d307441 From b511dca965a725e76ab4d26988248c5f108fa7fe Mon Sep 17 00:00:00 2001 From: Nick Woolmer <29717167+nwoolmer@users.noreply.github.com> Date: Wed, 2 Apr 2025 11:04:17 +0100 Subject: [PATCH 7/9] debugging --- c-questdb-client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c-questdb-client b/c-questdb-client index cdd1ea5..76bf76e 160000 --- a/c-questdb-client +++ b/c-questdb-client @@ -1 +1 @@ -Subproject commit cdd1ea52d0d41335d13a7555b3956d769d307441 +Subproject commit 76bf76e539133e8d680184518dfbdf413cd4dbf0 From ccd3c2b35ac745f8c4e23aff940e027e9e511620 Mon Sep 17 00:00:00 2001 From: Nick Woolmer <29717167+nwoolmer@users.noreply.github.com> Date: Wed, 2 Apr 2025 11:04:58 +0100 Subject: [PATCH 8/9] don't name error --- c-questdb-client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c-questdb-client b/c-questdb-client index 76bf76e..242c1f3 160000 --- a/c-questdb-client +++ b/c-questdb-client @@ -1 +1 @@ -Subproject commit 76bf76e539133e8d680184518dfbdf413cd4dbf0 +Subproject commit 242c1f3c6a830ce28ca515168bc90306c9c96ab4 From 3918795ace6c556e46af002e83b28795a4695c46 Mon Sep 17 00:00:00 2001 From: Nick Woolmer <29717167+nwoolmer@users.noreply.github.com> Date: Wed, 2 Apr 2025 13:14:20 +0100 Subject: [PATCH 9/9] fix macos ci --- ci/cibuildwheel.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/cibuildwheel.yaml b/ci/cibuildwheel.yaml index 6e6aef5..6e5b156 100644 --- a/ci/cibuildwheel.yaml +++ b/ci/cibuildwheel.yaml @@ -144,7 +144,7 @@ stages: inputs: {pathtoPublish: 'wheelhouse'} - job: macos_x64 - pool: {vmImage: 'macOS-12'} + pool: {vmImage: 'macOS-13'} timeoutInMinutes: 90 steps: - task: UsePythonVersion@0