Skip to content

Commit

Permalink
Merge pull request #68 from ropable/master
Browse files Browse the repository at this point in the history
Project dependency updates
  • Loading branch information
ropable authored Oct 8, 2024
2 parents 67c4314 + 159ab0f commit bbb023c
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 73 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ repos:
# For running trufflehog in docker, use the following entry instead:
# entry: bash -c 'docker run --rm -v "$(pwd):/workdir" -i --rm trufflesecurity/trufflehog:latest git file:///workdir --since-commit HEAD --only-verified --fail'
language: system
stages: ["commit", "push"]
stages: ["pre-commit", "pre-push"]
71 changes: 37 additions & 34 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

76 changes: 38 additions & 38 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
[tool.poetry]
name = "healthcheck"
version = "1.3.2"
description = "Internal service endpoint health check for Spatial Support System"
authors = ["ASI <[email protected]>"]
package-mode = false

[tool.poetry.dependencies]
python = "^3.12"
bottle = "0.13.1"
requests = "2.32.3"
pytz = "2024.1"
python-dotenv = "1.0.1"
gunicorn = "23.0.0"
humanize = "4.10.0"
defusedxml = "0.7.1"

[tool.poetry.group.dev.dependencies]
ipython = "^8.27.0"
pre-commit = "^3.7.1"

# Reference: https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 120

[tool.ruff.lint]
ignore = [
"E501", # Line too long
"E722", # Bare except
]

# Reference: https://www.djlint.com/docs/configuration/
[tool.djlint]
profile = "django"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "healthcheck"
version = "1.3.2"
description = "Internal service endpoint health check for Spatial Support System"
authors = ["ASI <[email protected]>"]
package-mode = false

[tool.poetry.dependencies]
python = "^3.12"
bottle = "0.13.1"
requests = "2.32.3"
pytz = "2024.1"
python-dotenv = "1.0.1"
gunicorn = "23.0.0"
humanize = "4.11.0"
defusedxml = "0.7.1"

[tool.poetry.group.dev.dependencies]
ipython = "^8.28.0"
pre-commit = "^4.0.0"

# Reference: https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 120

[tool.ruff.lint]
ignore = [
"E501", # Line too long
"E722", # Bare except
]

# Reference: https://www.djlint.com/docs/configuration/
[tool.djlint]
profile = "django"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit bbb023c

Please sign in to comment.