Couple dependency changes (#165)

This commit is contained in:
jbirddog 2023-03-06 10:12:54 -05:00 committed by GitHub
parent 7220496127
commit 7c0b7d252e
4 changed files with 4115 additions and 4159 deletions

4037
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,10 @@
[tool.poetry] [tool.poetry]
name = "spiffworkflow-arean" name = "spiffworkflow-arena"
version = "0.0.0" version = "0.0.0"
description = "Spiffworkflow Arena" description = "Spiffworkflow Arena"
authors = ["Jason Lantz <sartography@users.noreply.github.com>"] authors = ["Jason Lantz <sartography@users.noreply.github.com>"]
license = "MIT" license = "MIT"
readme = "README.rst" readme = "README.md"
homepage = "https://github.com/sartography/spiffworkflow-arena" homepage = "https://github.com/sartography/spiffworkflow-arena"
repository = "https://github.com/sartography/spiffworkflow-arena" repository = "https://github.com/sartography/spiffworkflow-arena"
classifiers = [ classifiers = [
@ -48,7 +48,6 @@ APScheduler = "^3.9.1"
Jinja2 = "^3.1.2" Jinja2 = "^3.1.2"
RestrictedPython = "^6.0" RestrictedPython = "^6.0"
Flask-SQLAlchemy = "^3" Flask-SQLAlchemy = "^3"
orjson = "^3.8.0"
# type hinting stuff # type hinting stuff
# these need to be in the normal (non dev-dependencies) section # these need to be in the normal (non dev-dependencies) section

File diff suppressed because it is too large Load Diff

View File

@ -75,7 +75,7 @@ pylint = "^2.15.10"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
pytest = "*" pytest = "^7.1.2"
coverage = {extras = ["toml"], version = "^6.1"} coverage = {extras = ["toml"], version = "^6.1"}
safety = "^2.3.1" safety = "^2.3.1"
mypy = ">=0.961" mypy = ">=0.961"
@ -84,12 +84,12 @@ xdoctest = {extras = ["colors"], version = "^1.0.1"}
sphinx = "^5.0.2" sphinx = "^5.0.2"
sphinx-autobuild = ">=2021.3.14" sphinx-autobuild = ">=2021.3.14"
pre-commit = "^2.20.0" pre-commit = "^2.20.0"
flake8 = "*" flake8 = "^4.0.1"
black = ">=21.10b0" black = ">=21.10b0"
flake8-bandit = "*" flake8-bandit = "^2.1.2"
# 1.7.3 broke us. https://github.com/PyCQA/bandit/issues/841 # 1.7.3 broke us. https://github.com/PyCQA/bandit/issues/841
bandit = "*" bandit = "1.7.2"
flake8-bugbear = "^22.10.25" flake8-bugbear = "^22.10.25"
flake8-docstrings = "^1.6.0" flake8-docstrings = "^1.6.0"