devops: added ignore for examples, updated requires-python, added new lib faker

This commit is contained in:
Arduinum628
2025-09-11 11:46:46 +03:00
parent 92765001be
commit c196e02314
3 changed files with 34 additions and 3 deletions

3
.gitignore vendored
View File

@@ -173,3 +173,6 @@ cython_debug/
# VSCODE # VSCODE
.vscode/ .vscode/
# examples
examples/

29
poetry.lock generated
View File

@@ -198,6 +198,21 @@ files = [
{file = "docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f"}, {file = "docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f"},
] ]
[[package]]
name = "faker"
version = "37.6.0"
description = "Faker is a Python package that generates fake data for you."
optional = false
python-versions = ">=3.9"
groups = ["main"]
files = [
{file = "faker-37.6.0-py3-none-any.whl", hash = "sha256:3c5209b23d7049d596a51db5d76403a0ccfea6fc294ffa2ecfef6a8843b1e6a7"},
{file = "faker-37.6.0.tar.gz", hash = "sha256:0f8cc34f30095184adf87c3c24c45b38b33ad81c35ef6eb0a3118f301143012c"},
]
[package.dependencies]
tzdata = "*"
[[package]] [[package]]
name = "filetype" name = "filetype"
version = "1.2.0" version = "1.2.0"
@@ -1166,6 +1181,18 @@ files = [
[package.dependencies] [package.dependencies]
typing-extensions = ">=4.12.0" typing-extensions = ">=4.12.0"
[[package]]
name = "tzdata"
version = "2025.2"
description = "Provider of IANA time zone data"
optional = false
python-versions = ">=2"
groups = ["main"]
files = [
{file = "tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8"},
{file = "tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9"},
]
[[package]] [[package]]
name = "urllib3" name = "urllib3"
version = "2.3.0" version = "2.3.0"
@@ -1187,4 +1214,4 @@ zstd = ["zstandard (>=0.18.0)"]
[metadata] [metadata]
lock-version = "2.1" lock-version = "2.1"
python-versions = ">=3.12,<4.0" python-versions = ">=3.12,<4.0"
content-hash = "f4698f78aee2e38be26b1230676a01987f41074ce6f181bfbfc6e466f19ef491" content-hash = "816dd58321a6a8a40acd2b7654f2ebc31aa77336462f61bfbbff781f0585b1cb"

View File

@@ -7,7 +7,7 @@ authors = [
] ]
license = {text = "MIT"} license = {text = "MIT"}
readme = "README.md" readme = "README.md"
requires-python = ">=3.12,<4.0" requires-python = ">=3.12,<3.15"
dependencies = [ dependencies = [
"kivy (>=2.3.1,<3.0.0)", "kivy (>=2.3.1,<3.0.0)",
"pytest (>=8.3.5,<9.0.0)", "pytest (>=8.3.5,<9.0.0)",
@@ -17,6 +17,7 @@ dependencies = [
"alembic (>=1.15.2,<2.0.0)", "alembic (>=1.15.2,<2.0.0)",
"ruff (>=0.11.8,<0.12.0)", "ruff (>=0.11.8,<0.12.0)",
"kivymd @ https://github.com/kivymd/KivyMD/archive/master.zip", "kivymd @ https://github.com/kivymd/KivyMD/archive/master.zip",
"faker (>=37.6.0,<38.0.0)",
] ]