We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a934d5 commit 201f4c8Copy full SHA for 201f4c8
.github/workflows/publish.yml
@@ -5,7 +5,7 @@ name: Publish Artifacts
5
on:
6
push:
7
tags:
8
- - 'v*'
+ - '\d+\.\d+\.\d+' # Tags like 1.0.0, 1.0.0, etc.
9
10
permissions:
11
id-token: write
.pylintrc
@@ -1,7 +1,8 @@
1
[MESSAGES CONTROL]
2
disable=
3
too-few-public-methods,
4
- broad-except
+ broad-except.
+ import-error
[MASTER]
ignore-patterns=test_.*\.py
0 commit comments