Skip to content

Commit d331871

Browse files
Merge branch 'main' into use-pytest
2 parents d63eccb + fe6c99b commit d331871

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

pyproject.toml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "surrealdb"
7-
version = "1.0.4"
7+
version = "1.0.5"
88
description = "SurrealDB python client"
99
readme = "README.md"
1010
authors = [{ name = "SurrealDB" }]
@@ -44,26 +44,27 @@ documentation = "https://surrealdb.com/docs/sdk/python"
4444
packages = ["src/surrealdb"]
4545

4646
[tool.hatch.build.targets.sdist]
47-
include = [
48-
"/src",
49-
"/tests",
50-
"/README.md",
51-
"/LICENSE",
52-
]
47+
include = ["/src", "/tests", "/README.md", "/LICENSE"]
5348

5449
[tool.ruff]
5550
exclude = ["src/surrealdb/__init__.py"]
5651

5752
[tool.ruff.lint]
5853
select = [
59-
"I", # isort
60-
"UP", # pyupgrade
54+
"I", # isort
55+
"UP", # pyupgrade
6156
]
6257

6358
[tool.mypy]
6459
mypy_path = "src"
6560
explicit_package_bases = true
66-
disable_error_code = ["return-value", "var-annotated", "assignment", "arg-type", "attr-defined"]
61+
disable_error_code = [
62+
"return-value",
63+
"var-annotated",
64+
"assignment",
65+
"arg-type",
66+
"attr-defined",
67+
]
6768

6869
[[tool.mypy.overrides]]
6970
module = "cerberus.*"
@@ -120,7 +121,7 @@ dev = [
120121
{ include-group = "test" },
121122
"mypy>=1.0.0",
122123
"ruff>=0.12.0",
123-
"types-requests>=2.25.0", # Type stubs for requests
124+
"types-requests>=2.25.0", # Type stubs for requests
124125
]
125126
test = [
126127
"coverage>=7.0.0",
@@ -129,3 +130,4 @@ test = [
129130
"pytest-asyncio>=0.21.0",
130131
"pytest-cov>=4.0.0",
131132
]
133+
test = ["hypothesis>=6.135.16"]

0 commit comments

Comments
 (0)