Skip to content

Commit

Permalink
ci: reduce minimum required Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
lapets committed Feb 6, 2025
1 parent 9f49321 commit 031bfb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-test-cover-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 031bfb8

Please # to comment.