Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
api-client-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
funkwhale
api-client-python
Commits
8b327239
Verified
Commit
8b327239
authored
2 years ago
by
Georg Krause
Browse files
Options
Downloads
Patches
Plain Diff
build(lint): Introduce CI linting
parent
bd9ddb59
No related branches found
No related tags found
1 merge request
!3
Resolve "Implement linting"
Pipeline
#23831
passed
2 years ago
Stage: lint
Stage: test
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+10
-0
10 additions, 0 deletions
.gitlab-ci.yml
poetry.lock
+139
-1
139 additions, 1 deletion
poetry.lock
pyproject.toml
+1
-0
1 addition, 0 deletions
pyproject.toml
with
150 additions
and
1 deletion
.gitlab-ci.yml
+
10
−
0
View file @
8b327239
...
...
@@ -6,12 +6,22 @@
# Note that environment variables can be set in several places
# See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
stages
:
-
lint
-
test
sast
:
stage
:
test
include
:
-
template
:
Security/SAST.gitlab-ci.yml
black
:
image
:
python:3.10-alpine
stage
:
lint
before_script
:
-
apk add poetry
-
poetry install
script
:
-
poetry run black --check .
pytest
:
image
:
python:3.10-alpine
before_script
:
...
...
This diff is collapsed.
Click to expand it.
poetry.lock
+
139
−
1
View file @
8b327239
...
...
@@ -30,6 +30,29 @@ docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"]
tests
=
[
"cloudpickle"
,
"coverage[toml] (>=5.0.2)"
,
"hypothesis"
,
"mypy (>=0.900,!=0.940)"
,
"pympler"
,
"pytest (>=4.3.0)"
,
"pytest-mypy-plugins"
,
"zope.interface"
]
tests_no_zope
=
[
"cloudpickle"
,
"coverage[toml] (>=5.0.2)"
,
"hypothesis"
,
"mypy (>=0.900,!=0.940)"
,
"pympler"
,
"pytest (>=4.3.0)"
,
"pytest-mypy-plugins"
]
[[package]]
name
=
"black"
version
=
"22.8.0"
description
=
"The uncompromising code formatter."
category
=
"dev"
optional
=
false
python-versions
=
">
=
3.6
.
2
"
[package.dependencies]
click
=
">
=
8.0
.
0
"
mypy-extensions
=
">
=
0.4
.
3
"
pathspec
=
">
=
0.9
.
0
"
platformdirs
=
">
=
2
"
tomli
=
{
version
=
">
=
1.1
.
0
", markers = "
python_full_version
<
\"
3.11
.
0
a
7
\"
"}
typed-ast
=
{
version
=
">
=
1.4
.
2
", markers = "
python_version
<
\"
3.8
\"
and
implementation_name
=
=
\"
cpython
\"
"}
typing-extensions
=
{
version
=
">
=
3.10
.
0.0
", markers = "
python_version
<
\"
3.10
\"
"}
[
package.extras
]
colorama
=
[
"colorama (>=0.4.3)"
]
d
=
[
"aiohttp (>=3.7.4)"
]
jupyter
=
[
"ipython (>=7.8.0)"
,
"tokenize-rt (>=3.2.0)"
]
uvloop
=
[
"uvloop (>=0.15.2)"
]
[[
package
]]
name
=
"certifi"
version
=
"2022.9.14"
...
...
@@ -38,6 +61,18 @@ category = "main"
optional
=
false
python-versions
=
">
=
3.6
"
[[
package
]]
name
=
"click"
version
=
"8.1.3"
description
=
"Composable command line interface toolkit"
category
=
"dev"
optional
=
false
python-versions
=
">
=
3.7
"
[
package.dependencies
]
colorama
=
{
version
=
"*"
,
markers
=
"platform_system
=
=
\"
Windows
\"
"}
importlib-metadata
=
{
version
=
"*"
,
markers
=
"python_version <
\"
3.8
\"
"
}
[[
package
]]
name
=
"colorama"
version
=
"0.4.5"
...
...
@@ -139,6 +174,14 @@ category = "dev"
optional
=
false
python-versions
=
"*"
[[
package
]]
name
=
"mypy-extensions"
version
=
"0.4.3"
description
=
"Experimental type system extensions for programs checked with the mypy typechecker."
category
=
"dev"
optional
=
false
python-versions
=
"*"
[[
package
]]
name
=
"packaging"
version
=
"21.3"
...
...
@@ -150,6 +193,26 @@ python-versions = ">=3.6"
[
package.dependencies
]
pyparsing
=
">
=
2.0
.
2
,
<
3.0
.
5
||
>
3.0
.
5
"
[[
package
]]
name
=
"pathspec"
version
=
"0.10.1"
description
=
"Utility library for gitignore style pattern matching of file paths."
category
=
"dev"
optional
=
false
python-versions
=
">
=
3.7
"
[[
package
]]
name
=
"platformdirs"
version
=
"2.5.2"
description
=
"A small Python module for determining appropriate platform-specific dirs, e.g. a
\"
user data dir
\"
."
category
=
"dev"
optional
=
false
python-versions
=
">
=
3.7
"
[
package.extras
]
docs
=
[
"furo (>=2021.7.5b38)"
,
"proselint (>=0.10.2)"
,
"sphinx (>=4)"
,
"sphinx-autodoc-typehints (>=1.12)"
]
test
=
[
"appdirs (==1.4.4)"
,
"pytest (>=6)"
,
"pytest-cov (>=2.7)"
,
"pytest-mock (>=3.6)"
]
[[
package
]]
name
=
"pluggy"
version
=
"1.0.0"
...
...
@@ -269,6 +332,14 @@ category = "dev"
optional
=
false
python-versions
=
">
=
3.7
"
[[
package
]]
name
=
"typed-ast"
version
=
"1.5.4"
description
=
"a fork of Python 2 and 3 ast modules with type comment support"
category
=
"dev"
optional
=
false
python-versions
=
">
=
3.6
"
[[
package
]]
name
=
"typing-extensions"
version
=
"4.3.0"
...
...
@@ -292,7 +363,7 @@ testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>=
[
metadata
]
lock-version
=
"1.1"
python-versions
=
"^3.7"
content-hash
=
"
1bd2e1ae8a437fbd743e42df72361a4474cc3cf8f861dbdc9828cfa3385fb0b0
"
content-hash
=
"
408720b82b9283102dceb0c0537188b76254cab98c2ba4d703cd5fc79253e70f
"
[
metadata.files
]
anyio
=
[
...
...
@@ -303,10 +374,39 @@ attrs = [
{file
=
"attrs-22.1.0-py2.py3-none-any.whl"
,
hash
=
"sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"
}
,
{file
=
"attrs-22.1.0.tar.gz"
,
hash
=
"sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"
}
,
]
black
=
[
{file
=
"black-22.8.0-cp310-cp310-macosx_10_9_universal2.whl"
,
hash
=
"sha256:ce957f1d6b78a8a231b18e0dd2d94a33d2ba738cd88a7fe64f53f659eea49fdd"
}
,
{file
=
"black-22.8.0-cp310-cp310-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:5107ea36b2b61917956d018bd25129baf9ad1125e39324a9b18248d362156a27"
}
,
{file
=
"black-22.8.0-cp310-cp310-macosx_11_0_arm64.whl"
,
hash
=
"sha256:e8166b7bfe5dcb56d325385bd1d1e0f635f24aae14b3ae437102dedc0c186747"
}
,
{file
=
"black-22.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
,
hash
=
"sha256:dd82842bb272297503cbec1a2600b6bfb338dae017186f8f215c8958f8acf869"
}
,
{file
=
"black-22.8.0-cp310-cp310-win_amd64.whl"
,
hash
=
"sha256:d839150f61d09e7217f52917259831fe2b689f5c8e5e32611736351b89bb2a90"
}
,
{file
=
"black-22.8.0-cp36-cp36m-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:a05da0430bd5ced89176db098567973be52ce175a55677436a271102d7eaa3fe"
}
,
{file
=
"black-22.8.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
,
hash
=
"sha256:4a098a69a02596e1f2a58a2a1c8d5a05d5a74461af552b371e82f9fa4ada8342"
}
,
{file
=
"black-22.8.0-cp36-cp36m-win_amd64.whl"
,
hash
=
"sha256:5594efbdc35426e35a7defa1ea1a1cb97c7dbd34c0e49af7fb593a36bd45edab"
}
,
{file
=
"black-22.8.0-cp37-cp37m-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:a983526af1bea1e4cf6768e649990f28ee4f4137266921c2c3cee8116ae42ec3"
}
,
{file
=
"black-22.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
,
hash
=
"sha256:3b2c25f8dea5e8444bdc6788a2f543e1fb01494e144480bc17f806178378005e"
}
,
{file
=
"black-22.8.0-cp37-cp37m-win_amd64.whl"
,
hash
=
"sha256:78dd85caaab7c3153054756b9fe8c611efa63d9e7aecfa33e533060cb14b6d16"
}
,
{file
=
"black-22.8.0-cp38-cp38-macosx_10_9_universal2.whl"
,
hash
=
"sha256:cea1b2542d4e2c02c332e83150e41e3ca80dc0fb8de20df3c5e98e242156222c"
}
,
{file
=
"black-22.8.0-cp38-cp38-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:5b879eb439094751185d1cfdca43023bc6786bd3c60372462b6f051efa6281a5"
}
,
{file
=
"black-22.8.0-cp38-cp38-macosx_11_0_arm64.whl"
,
hash
=
"sha256:0a12e4e1353819af41df998b02c6742643cfef58282915f781d0e4dd7a200411"
}
,
{file
=
"black-22.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
,
hash
=
"sha256:c3a73f66b6d5ba7288cd5d6dad9b4c9b43f4e8a4b789a94bf5abfb878c663eb3"
}
,
{file
=
"black-22.8.0-cp38-cp38-win_amd64.whl"
,
hash
=
"sha256:e981e20ec152dfb3e77418fb616077937378b322d7b26aa1ff87717fb18b4875"
}
,
{file
=
"black-22.8.0-cp39-cp39-macosx_10_9_universal2.whl"
,
hash
=
"sha256:8ce13ffed7e66dda0da3e0b2eb1bdfc83f5812f66e09aca2b0978593ed636b6c"
}
,
{file
=
"black-22.8.0-cp39-cp39-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:32a4b17f644fc288c6ee2bafdf5e3b045f4eff84693ac069d87b1a347d861497"
}
,
{file
=
"black-22.8.0-cp39-cp39-macosx_11_0_arm64.whl"
,
hash
=
"sha256:0ad827325a3a634bae88ae7747db1a395d5ee02cf05d9aa7a9bd77dfb10e940c"
}
,
{file
=
"black-22.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
,
hash
=
"sha256:53198e28a1fb865e9fe97f88220da2e44df6da82b18833b588b1883b16bb5d41"
}
,
{file
=
"black-22.8.0-cp39-cp39-win_amd64.whl"
,
hash
=
"sha256:bc4d4123830a2d190e9cc42a2e43570f82ace35c3aeb26a512a2102bce5af7ec"
}
,
{file
=
"black-22.8.0-py3-none-any.whl"
,
hash
=
"sha256:d2c21d439b2baf7aa80d6dd4e3659259be64c6f49dfd0f32091063db0e006db4"
}
,
{file
=
"black-22.8.0.tar.gz"
,
hash
=
"sha256:792f7eb540ba9a17e8656538701d3eb1afcb134e3b45b71f20b25c77a8db7e6e"
}
,
]
certifi
=
[
{file
=
"certifi-2022.9.14-py3-none-any.whl"
,
hash
=
"sha256:e232343de1ab72c2aa521b625c80f699e356830fd0e2c620b465b304b17b0516"
}
,
{file
=
"certifi-2022.9.14.tar.gz"
,
hash
=
"sha256:36973885b9542e6bd01dea287b2b4b3b21236307c56324fcc3f1160f2d655ed5"
}
,
]
click
=
[
{file
=
"click-8.1.3-py3-none-any.whl"
,
hash
=
"sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"
}
,
{file
=
"click-8.1.3.tar.gz"
,
hash
=
"sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"
}
,
]
colorama
=
[
{file
=
"colorama-0.4.5-py2.py3-none-any.whl"
,
hash
=
"sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"
}
,
{file
=
"colorama-0.4.5.tar.gz"
,
hash
=
"sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"
}
,
...
...
@@ -387,10 +487,22 @@ iniconfig = [
{file
=
"iniconfig-1.1.1-py2.py3-none-any.whl"
,
hash
=
"sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"
}
,
{file
=
"iniconfig-1.1.1.tar.gz"
,
hash
=
"sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"
}
,
]
mypy-extensions
=
[
{file
=
"mypy_extensions-0.4.3-py2.py3-none-any.whl"
,
hash
=
"sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"
}
,
{file
=
"mypy_extensions-0.4.3.tar.gz"
,
hash
=
"sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"
}
,
]
packaging
=
[
{file
=
"packaging-21.3-py3-none-any.whl"
,
hash
=
"sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"
}
,
{file
=
"packaging-21.3.tar.gz"
,
hash
=
"sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"
}
,
]
pathspec
=
[
{file
=
"pathspec-0.10.1-py3-none-any.whl"
,
hash
=
"sha256:46846318467efc4556ccfd27816e004270a9eeeeb4d062ce5e6fc7a87c573f93"
}
,
{file
=
"pathspec-0.10.1.tar.gz"
,
hash
=
"sha256:7ace6161b621d31e7902eb6b5ae148d12cfd23f4a249b9ffb6b9fee12084323d"
}
,
]
platformdirs
=
[
{file
=
"platformdirs-2.5.2-py3-none-any.whl"
,
hash
=
"sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"
}
,
{file
=
"platformdirs-2.5.2.tar.gz"
,
hash
=
"sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"
}
,
]
pluggy
=
[
{file
=
"pluggy-1.0.0-py2.py3-none-any.whl"
,
hash
=
"sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"
}
,
{file
=
"pluggy-1.0.0.tar.gz"
,
hash
=
"sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"
}
,
...
...
@@ -431,6 +543,32 @@ tomli = [
{file
=
"tomli-2.0.1-py3-none-any.whl"
,
hash
=
"sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"
}
,
{file
=
"tomli-2.0.1.tar.gz"
,
hash
=
"sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"
}
,
]
typed-ast
=
[
{file
=
"typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"
}
,
{file
=
"typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl"
,
hash
=
"sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"
}
,
{file
=
"typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
,
hash
=
"sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"
}
,
{file
=
"typed_ast-1.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl"
,
hash
=
"sha256:c542eeda69212fa10a7ada75e668876fdec5f856cd3d06829e6aa64ad17c8dfe"
}
,
{file
=
"typed_ast-1.5.4-cp310-cp310-win_amd64.whl"
,
hash
=
"sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"
}
,
{file
=
"typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"
}
,
{file
=
"typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
,
hash
=
"sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"
}
,
{file
=
"typed_ast-1.5.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl"
,
hash
=
"sha256:183afdf0ec5b1b211724dfef3d2cad2d767cbefac291f24d69b00546c1837fb6"
}
,
{file
=
"typed_ast-1.5.4-cp36-cp36m-win_amd64.whl"
,
hash
=
"sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"
}
,
{file
=
"typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"
}
,
{file
=
"typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
,
hash
=
"sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"
}
,
{file
=
"typed_ast-1.5.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl"
,
hash
=
"sha256:6778e1b2f81dfc7bc58e4b259363b83d2e509a65198e85d5700dfae4c6c8ff1c"
}
,
{file
=
"typed_ast-1.5.4-cp37-cp37m-win_amd64.whl"
,
hash
=
"sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"
}
,
{file
=
"typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"
}
,
{file
=
"typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl"
,
hash
=
"sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"
}
,
{file
=
"typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
,
hash
=
"sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"
}
,
{file
=
"typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl"
,
hash
=
"sha256:4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6"
}
,
{file
=
"typed_ast-1.5.4-cp38-cp38-win_amd64.whl"
,
hash
=
"sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"
}
,
{file
=
"typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl"
,
hash
=
"sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"
}
,
{file
=
"typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl"
,
hash
=
"sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"
}
,
{file
=
"typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
,
hash
=
"sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"
}
,
{file
=
"typed_ast-1.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl"
,
hash
=
"sha256:98f80dee3c03455e92796b58b98ff6ca0b2a6f652120c263efdba4d6c5e58f72"
}
,
{file
=
"typed_ast-1.5.4-cp39-cp39-win_amd64.whl"
,
hash
=
"sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"
}
,
{file
=
"typed_ast-1.5.4.tar.gz"
,
hash
=
"sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"
}
,
]
typing-extensions
=
[
{file
=
"typing_extensions-4.3.0-py3-none-any.whl"
,
hash
=
"sha256:25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02"
}
,
{file
=
"typing_extensions-4.3.0.tar.gz"
,
hash
=
"sha256:e6d2677a32f47fc7eb2795db1dd15c1f34eff616bcaf2cfb5e997f854fa1c4a6"
}
,
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
+
1
−
0
View file @
8b327239
...
...
@@ -20,6 +20,7 @@ python-dateutil = "^2.8.0"
[tool.poetry.dev-dependencies]
pytest
=
"^7.1.3"
pytest-cov
=
"^3.0.0"
black
=
"^22.8.0"
[build-system]
requires
=
["poetry-core>
=
1.0
.
0
"]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment