update deps
This commit is contained in:
parent
01b486031b
commit
0a4e7985cc
5 changed files with 830 additions and 526 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
layout python3
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -228,3 +228,4 @@ dmypy.json
|
||||||
|
|
||||||
.idea
|
.idea
|
||||||
.vscode
|
.vscode
|
||||||
|
.direnv
|
||||||
|
|
1
.tool-versions
Normal file
1
.tool-versions
Normal file
|
@ -0,0 +1 @@
|
||||||
|
python 3.11.2
|
1340
poetry.lock
generated
1340
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -20,15 +20,14 @@ classifiers = [
|
||||||
"Operating System :: MacOS :: MacOS X",
|
"Operating System :: MacOS :: MacOS X",
|
||||||
"Operating System :: Microsoft :: Windows",
|
"Operating System :: Microsoft :: Windows",
|
||||||
"Operating System :: Unix",
|
"Operating System :: Unix",
|
||||||
"Programming Language :: Python :: 3.8",
|
|
||||||
"Programming Language :: Python :: 3.9",
|
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
|
"Programming Language :: Python :: 3.11",
|
||||||
"Programming Language :: Python :: 3 :: Only",
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
"Topic :: Utilities",
|
"Topic :: Utilities",
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = ">=3.8,<4"
|
python = ">=3.10,<4"
|
||||||
ofxtools = ">=0.9.4"
|
ofxtools = ">=0.9.4"
|
||||||
click = ">=8.0.3"
|
click = ">=8.0.3"
|
||||||
dateparser = ">=1.1.0"
|
dateparser = ">=1.1.0"
|
||||||
|
@ -39,7 +38,7 @@ python-telegram-bot = {version = ">=20.0a4", allow-prereleases = true}
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
pytest = ">=6.0.1"
|
pytest = ">=6.0.1"
|
||||||
pytest-cov = ">=3.0.0"
|
pytest-cov = ">=3.0.0"
|
||||||
invoke = ">=1.6.0"
|
invoke = ">=2.0.0"
|
||||||
pre-commit = ">=2.15.0"
|
pre-commit = ">=2.15.0"
|
||||||
tox = ">=3.24.4"
|
tox = ">=3.24.4"
|
||||||
pdbpp = ">=0.10.3"
|
pdbpp = ">=0.10.3"
|
||||||
|
@ -57,12 +56,12 @@ profile = "black"
|
||||||
legacy_tox_ini = """
|
legacy_tox_ini = """
|
||||||
[tox]
|
[tox]
|
||||||
isolated_build = true
|
isolated_build = true
|
||||||
envlist = py38, py39, py310
|
envlist = py310, py311
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = poetry
|
allowlist_externals = poetry
|
||||||
commands =
|
commands =
|
||||||
poetry install --remove-untracked
|
poetry install --sync
|
||||||
poetry run inv test
|
poetry run inv test
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue