diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index e9a59cd..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.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 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..4b0c2b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,9 @@ [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.11" +requires-python = ">=3.8" dependencies = [ "pymongo~=4.15.2" ]