Skip to content

Commit

Permalink
Merge pull request #3 from frack113/Update_dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
wagga40 authored Jan 28, 2024
2 parents 535c8b0 + 114d508 commit 4d7ed9c
Show file tree
Hide file tree
Showing 7 changed files with 1,031 additions and 709 deletions.
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
repos:
- repo: https://github.com/psf/black
rev: 24.1.1
hooks:
- id: black
1,150 changes: 629 additions & 521 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion print-coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
elif coverage >= 85.0:
print("COVERAGE_COLOR=orange")
else:
print("COVERAGE_COLOR=red")
print("COVERAGE_COLOR=red")
23 changes: 12 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pySigma-backend-sqlite"
version = "0.1.1"
version = "0.1.2"
description = "pySigma sqlite backend"
readme = "README.md"
authors = ["wagga"]
Expand All @@ -12,12 +12,13 @@ packages = [

[tool.poetry.dependencies]
python = "^3.8"
pysigma = "^0.10.5"
pysigma = "^0.11"

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
coverage = "^7.3.0"
black = "^24.1"
pytest = "^8.0"
pytest-cov = "^4.1"
coverage = "^7.4"


[tool.pdm]
Expand All @@ -27,7 +28,7 @@ dev = []
[tool.pdm.build]
includes = ["sigma"]
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=1.8.1"]
build-backend = "poetry.core.masonry.api"

[project]
Expand All @@ -37,16 +38,16 @@ authors = [
license = {text = "LGPL-3.0-only"}
requires-python = ">=3.8,<4.0"
dependencies = [
"pysigma>=0.10.2",
"pysigma>=0.11",
]
name = "pySigma-backend-sqlite"
version = "0.1.1"
version = "0.1.2"
description = "pySigma sqlite backend"

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

[project.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
coverage = "^7.3.0"
pytest = "^8.0"
pytest-cov = "^4.1"
coverage = "^7.4"
4 changes: 2 additions & 2 deletions sigma/backends/sqlite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .sqlite import sqliteBackend

backends = { # Mapping between backend identifiers and classes. This is used by the pySigma plugin system to recognize backends and expose them with the identifier.
backends = { # Mapping between backend identifiers and classes. This is used by the pySigma plugin system to recognize backends and expose them with the identifier.
"sqlite": sqliteBackend,
}
}
308 changes: 205 additions & 103 deletions sigma/backends/sqlite/sqlite.py

Large diffs are not rendered by default.

Loading

0 comments on commit 4d7ed9c

Please sign in to comment.