Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 15, 2024
1 parent a2d4331 commit 19aff32
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@ cython_debug/
src/simple_sqlite3_orm/_version.py

# vscode config
.vscode
.vscode
2 changes: 1 addition & 1 deletion hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ features = ["dev"]
type = "virtual"
python = "3.12"
path = "./venv/hatch_venv_dev_py312"
features = ["dev"]
features = ["dev"]
13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ requires = [
[project]
name = "simple-sqlite3-orm"
description = "A simple yet powerful SQLite3 ORM, powered by pydantic."
authors = [
{ name = "pga2rn", email = "aaronpigybd@gmail.com"},
]
readme = "README.md"
license = { text = "LICENSE.md" }
authors = [
{ name = "pga2rn", email = "aaronpigybd@gmail.com" },
]
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: Apache Software License",
Expand Down Expand Up @@ -42,9 +42,8 @@ optional-dependencies.dev = [
"ruff<0.8,>=0.6",
]

[project.urls]
Source = "https://github.com/pga2rn/simple-sqlite3-orm"
Tracker = "https://github.com/pga2rn/simple-sqlite3-orm/issues"
urls.Source = "https://github.com/pga2rn/simple-sqlite3-orm"
urls.Tracker = "https://github.com/pga2rn/simple-sqlite3-orm/issues"

[tool.black]
line-length = 88
Expand Down Expand Up @@ -89,4 +88,4 @@ exclude_also = [
]
show_missing = true
skip_covered = true
skip_empty = true
skip_empty = true
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated from pyproject.toml, only for reference use!
pydantic<3,>=2.6
typing-extensions>=4
typing-extensions>=4
2 changes: 1 addition & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ ignore = [
"E203", # (white space before ':'): this error conflicts with black linting
"E701", # (multiple statements on one line)
"S101", # (use of assert): mostly we use assert for typing
]
]

0 comments on commit 19aff32

Please sign in to comment.