Skip to content

Commit 4d7ed9c

Browse files
authored
Merge pull request #3 from frack113/Update_dependencies
Update dependencies
2 parents 535c8b0 + 114d508 commit 4d7ed9c

File tree

7 files changed

+1031
-709
lines changed

7 files changed

+1031
-709
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
repos:
2+
- repo: https://github.com/psf/black
3+
rev: 24.1.1
4+
hooks:
5+
- id: black

poetry.lock

Lines changed: 629 additions & 521 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

print-coverage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
elif coverage >= 85.0:
1313
print("COVERAGE_COLOR=orange")
1414
else:
15-
print("COVERAGE_COLOR=red")
15+
print("COVERAGE_COLOR=red")

pyproject.toml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pySigma-backend-sqlite"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "pySigma sqlite backend"
55
readme = "README.md"
66
authors = ["wagga"]
@@ -12,12 +12,13 @@ packages = [
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.8"
15-
pysigma = "^0.10.5"
15+
pysigma = "^0.11"
1616

1717
[tool.poetry.group.dev.dependencies]
18-
pytest = "^7.4.0"
19-
pytest-cov = "^4.1.0"
20-
coverage = "^7.3.0"
18+
black = "^24.1"
19+
pytest = "^8.0"
20+
pytest-cov = "^4.1"
21+
coverage = "^7.4"
2122

2223

2324
[tool.pdm]
@@ -27,7 +28,7 @@ dev = []
2728
[tool.pdm.build]
2829
includes = ["sigma"]
2930
[build-system]
30-
requires = ["poetry-core>=1.0.0"]
31+
requires = ["poetry-core>=1.8.1"]
3132
build-backend = "poetry.core.masonry.api"
3233

3334
[project]
@@ -37,16 +38,16 @@ authors = [
3738
license = {text = "LGPL-3.0-only"}
3839
requires-python = ">=3.8,<4.0"
3940
dependencies = [
40-
"pysigma>=0.10.2",
41+
"pysigma>=0.11",
4142
]
4243
name = "pySigma-backend-sqlite"
43-
version = "0.1.1"
44+
version = "0.1.2"
4445
description = "pySigma sqlite backend"
4546

4647
[project.urls]
4748
repository = "https://github.com/SigmaHQ/pySigma-backend-sqlite"
4849

4950
[project.group.dev.dependencies]
50-
pytest = "^7.4.0"
51-
pytest-cov = "^4.1.0"
52-
coverage = "^7.3.0"
51+
pytest = "^8.0"
52+
pytest-cov = "^4.1"
53+
coverage = "^7.4"

sigma/backends/sqlite/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .sqlite import sqliteBackend
22

3-
backends = { # Mapping between backend identifiers and classes. This is used by the pySigma plugin system to recognize backends and expose them with the identifier.
3+
backends = { # Mapping between backend identifiers and classes. This is used by the pySigma plugin system to recognize backends and expose them with the identifier.
44
"sqlite": sqliteBackend,
5-
}
5+
}

sigma/backends/sqlite/sqlite.py

Lines changed: 205 additions & 103 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)