From 64639901cd195da1d1cf8352bc960b84e2f985c3 Mon Sep 17 00:00:00 2001 From: Dan Bauman Date: Tue, 4 Nov 2025 16:23:26 -0500 Subject: [PATCH 1/3] update --- .github/workflows/python-test.yml | 2 +- .github/workflows/python-wheel.yml | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index e9a59cd..adb46e5 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -12,7 +12,7 @@ jobs: - ubuntu-latest strategy: matrix: - python-version: [3.11, 3.12, 3.13, 3.14] + python-version: [3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14] steps: - uses: actions/checkout@v5 diff --git a/.github/workflows/python-wheel.yml b/.github/workflows/python-wheel.yml index 40b022a..710424a 100644 --- a/.github/workflows/python-wheel.yml +++ b/.github/workflows/python-wheel.yml @@ -23,4 +23,4 @@ jobs: - uses: actions/upload-artifact@v4 with: name: wheel-file - path: ./dist/*.whl \ No newline at end of file + path: ./dist/* \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 0626bd5..25ee1b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "bsonstream" version = "0.1.7" description = "BSON stream raw data into dict or individual BSON format - python" -requires-python = ">=3.11" +requires-python = ">=3.8" dependencies = [ "pymongo~=4.15.2" ] From 617ea63a16158910425523c4c1f3584aaccb7c3c Mon Sep 17 00:00:00 2001 From: Dan Bauman Date: Tue, 4 Nov 2025 16:25:14 -0500 Subject: [PATCH 2/3] update --- .github/workflows/python-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index adb46e5..cfac43a 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -12,7 +12,7 @@ jobs: - ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14] + python-version: [3.8, 3.9, 3.11, 3.12, 3.13, 3.14] steps: - uses: actions/checkout@v5 From ea82b9750458c3196c54a92098b68e06b1ba14dd Mon Sep 17 00:00:00 2001 From: Dan Bauman Date: Tue, 4 Nov 2025 16:26:51 -0500 Subject: [PATCH 3/3] update --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 25ee1b2..4b0c2b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "bsonstream" -version = "0.1.7" +version = "0.1.8" description = "BSON stream raw data into dict or individual BSON format - python" requires-python = ">=3.8"