mkdocstrings-github 0.5.0__py3-none-any.whl → 0.5.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mkdocstrings-github
3
- Version: 0.5.0
3
+ Version: 0.5.1
4
4
  Summary: A GitHub Action handler for mkdocstrings
5
5
  Author-email: Mark Hu <watermarkhu@gmail.com>
6
6
  License: MIT
@@ -1,5 +1,5 @@
1
1
  mkdocstrings_handlers/github/__init__.py,sha256=0WdFUIq4Xu2ZFtlZNIYCQSoqcx3Ot9Wv41_X_dwbFww,248
2
- mkdocstrings_handlers/github/config.py,sha256=JrI9HK6g-XwXuKFJegfPOpvw-_ZMG0iipSNnEqU0wcw,6105
2
+ mkdocstrings_handlers/github/config.py,sha256=LJuMsZ4_wFZzwFIhOQypi2sTONaB3G4niyPwLh297yk,6045
3
3
  mkdocstrings_handlers/github/handler.py,sha256=ShE0EUsWDgonE4LtR3MFPEzCLwvDb2UztrAiXqQs_oc,8415
4
4
  mkdocstrings_handlers/github/objects.py,sha256=ckMEEoj3pdLasGHzZMwYY7XdjwbUdHRch07dAzgEHs0,8217
5
5
  mkdocstrings_handlers/github/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -11,7 +11,7 @@ mkdocstrings_handlers/github/templates/material/outputs.html.jinja,sha256=jlzVF9
11
11
  mkdocstrings_handlers/github/templates/material/secrets.html.jinja,sha256=1lMJoxjjeiqetVu0mdLKmZ1faYRReeyjiYvYTZESots,2881
12
12
  mkdocstrings_handlers/github/templates/material/style.css,sha256=R2hh1RfHwJ6XNT4YQl_txNkNXcPBZJMCBZn5kQEMQ6M,962
13
13
  mkdocstrings_handlers/github/templates/material/workflow.html.jinja,sha256=5dLdHRSQyulyFAVCVZAR_pkw-WXxCtM20cj6RS7IH1Q,4206
14
- mkdocstrings_github-0.5.0.dist-info/METADATA,sha256=maSQ6Gbg1xgruSrClF-EHllBLo4fy2q5A30XctacPSw,3867
15
- mkdocstrings_github-0.5.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
- mkdocstrings_github-0.5.0.dist-info/licenses/LICENSE,sha256=5enZtJ4zSp0Ps3jTqFQ4kadcx62BhgTaDNPrXWb3g3E,1069
17
- mkdocstrings_github-0.5.0.dist-info/RECORD,,
14
+ mkdocstrings_github-0.5.1.dist-info/METADATA,sha256=5gZeD09qgRS0XV18PjIw0uhDNoKOkCq9ohHAjuRDkzE,3867
15
+ mkdocstrings_github-0.5.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
+ mkdocstrings_github-0.5.1.dist-info/licenses/LICENSE,sha256=5enZtJ4zSp0Ps3jTqFQ4kadcx62BhgTaDNPrXWb3g3E,1069
17
+ mkdocstrings_github-0.5.1.dist-info/RECORD,,
@@ -2,7 +2,6 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- import re
6
5
  import sys
7
6
  from typing import Literal
8
7
 
@@ -99,7 +98,6 @@ class GitHubOptions(BaseModel):
99
98
  By default, the repository is inferred from the current git repository using the default origin remote.
100
99
  If it cannot be inferred, it must be set manually.
101
100
  """,
102
- pattern=re.compile(r"^[\w.-]+/[\w.-]+$"),
103
101
  )
104
102
 
105
103
  signature_show_secrets: bool = Field(