Add extra rye configs. update locks to be OS-aware
Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>
This commit is contained in:
parent
e6abc12470
commit
b03578a307
|
@ -53,6 +53,8 @@ dev-dependencies = [
|
|||
"pre-commit>=3.8.0",
|
||||
"pytest-cov>=5.0.0",
|
||||
]
|
||||
universal = true
|
||||
generate-hashes = true
|
||||
|
||||
[tool.hatch.version]
|
||||
path = "src/cloudevents/__init__.py"
|
||||
|
@ -104,6 +106,10 @@ exclude = [
|
|||
]
|
||||
|
||||
[tool.ruff.lint]
|
||||
|
||||
ignore = ["E731"]
|
||||
extend-ignore = ["E203"]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
testpaths = [
|
||||
"tests",
|
||||
]
|
||||
|
|
|
@ -6,12 +6,12 @@
|
|||
# features: []
|
||||
# all-features: false
|
||||
# with-sources: false
|
||||
# generate-hashes: false
|
||||
# universal: false
|
||||
# generate-hashes: true
|
||||
# universal: true
|
||||
|
||||
-e file:.
|
||||
cfgv==3.4.0
|
||||
colorama==0.4.6
|
||||
colorama==0.4.6 ; sys_platform == 'win32'
|
||||
coverage==7.6.1
|
||||
distlib==0.3.8
|
||||
filelock==3.16.1
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# features: []
|
||||
# all-features: false
|
||||
# with-sources: false
|
||||
# generate-hashes: false
|
||||
# universal: false
|
||||
# generate-hashes: true
|
||||
# universal: true
|
||||
|
||||
-e file:.
|
||||
|
|
Loading…
Reference in New Issue