From 031bfb8b7c10f05290cd48fa192516caa6e11de1 Mon Sep 17 00:00:00 2001 From: Andrei Lapets Date: Wed, 5 Feb 2025 23:45:18 -0500 Subject: [PATCH] ci: reduce minimum required Python version --- .github/workflows/lint-test-cover-docs.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-test-cover-docs.yml b/.github/workflows/lint-test-cover-docs.yml index 7d6e730..d7d3467 100644 --- a/.github/workflows/lint-test-cover-docs.yml +++ b/.github/workflows/lint-test-cover-docs.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12'] name: Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index fa10b14..a129cf5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,10 @@ [project] name = "nilql" -version = "0.0.0a9" +version = "0.0.0a10" description = "Library for working with encrypted data within nilDB queries and replies." license = {text = "MIT"} readme = "README.rst" -requires-python = ">=3.10" +requires-python = ">=3.9" dependencies = [ "bcl~=2.3", "pailliers~=0.1"