Skip to content

Commit cb91cf5

Browse files
committed
Fix Python >=3.9 compat: relax pytest bound, drop ipykernel, add testpaths
1 parent 275050f commit cb91cf5

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ license = { text = "MIT" }
77
authors = [
88
{ name = "azurechen97", email = "jhcax126@outlook.com" }
99
]
10-
requires-python = ">=3.12"
10+
requires-python = ">=3.9"
1111
dependencies = [
12-
"sqlglot>=29.0.1",
12+
"sqlglot>=29.0.0",
1313
]
1414
classifiers = [
1515
"Development Status :: 3 - Alpha",
@@ -31,9 +31,11 @@ build-backend = "hatchling.build"
3131

3232
[dependency-groups]
3333
dev = [
34-
"ipykernel>=7.2.0",
35-
"pytest>=9.0.2",
34+
"pytest>=7.0",
3635
]
3736

37+
[tool.pytest.ini_options]
38+
testpaths = ["tests"]
39+
3840
[project.entry-points."sqlglot.dialects"]
3941
maxcompute = "sqlglot_maxcompute.maxcompute:MaxCompute"

0 commit comments

Comments
 (0)