Skip to content

Commit

Permalink
fix: allow python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
zietzm committed Aug 30, 2024
1 parent 1fd6712 commit 2a6d037
Show file tree
Hide file tree
Showing 3 changed files with 158 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies = [
"scikit-learn>=1.5.1",
]
readme = "README.md"
requires-python = ">= 3.12"
requires-python = ">= 3.11"

[project.scripts]
"etl" = "webgwas_backend.cli.etl:main"
Expand Down
2 changes: 1 addition & 1 deletion src/webgwas_backend/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def setup_test_data(session: Session, rootdir: pathlib.Path):


def get_session_override():
with tempfile.TemporaryDirectory(delete=False) as rootdir:
with tempfile.TemporaryDirectory() as rootdir:
rootdir = pathlib.Path(rootdir)
engine = create_engine("sqlite:///:memory:")
SQLModel.metadata.create_all(engine)
Expand Down
Loading

0 comments on commit 2a6d037

Please sign in to comment.