py2docfx 0.1.18rc2160234__py3-none-any.whl → 0.1.19.dev2173761__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.
Files changed (24) hide show
  1. py2docfx/docfx_yaml/tests/roots/test-writer-table/code_with_table_desc.py +25 -1
  2. py2docfx/docfx_yaml/tests/test_writer_table.py +31 -1
  3. py2docfx/docfx_yaml/writer.py +2 -3
  4. py2docfx/venv/basevenv/Lib/site-packages/certifi/__init__.py +1 -1
  5. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_auth_record.py +5 -0
  6. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_constants.py +4 -0
  7. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_cli.py +5 -1
  8. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_powershell.py +14 -4
  9. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/client_assertion.py +1 -0
  10. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_exceptions.py +2 -0
  11. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/aadclient_certificate.py +3 -1
  12. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/get_token_mixin.py +1 -1
  13. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/interactive.py +1 -0
  14. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_credentials.py +1 -0
  15. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_version.py +1 -1
  16. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_cli.py +5 -1
  17. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/chained.py +1 -1
  18. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/on_behalf_of.py +1 -0
  19. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/get_token_mixin.py +1 -1
  20. py2docfx/venv/venv1/Lib/site-packages/certifi/__init__.py +1 -1
  21. {py2docfx-0.1.18rc2160234.dist-info → py2docfx-0.1.19.dev2173761.dist-info}/METADATA +1 -1
  22. {py2docfx-0.1.18rc2160234.dist-info → py2docfx-0.1.19.dev2173761.dist-info}/RECORD +24 -24
  23. {py2docfx-0.1.18rc2160234.dist-info → py2docfx-0.1.19.dev2173761.dist-info}/WHEEL +0 -0
  24. {py2docfx-0.1.18rc2160234.dist-info → py2docfx-0.1.19.dev2173761.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,5 @@
1
1
 
2
+
2
3
  class SampleClass():
3
4
  """
4
5
  :param dummy_param:
@@ -20,5 +21,28 @@ class SampleClass():
20
21
  """
21
22
  pass
22
23
 
23
- pass
24
+
25
+ class ExperimentalClass():
26
+ """
27
+ Experimental Class
28
+
29
+ .. list-table:: Supported Functions
30
+ :header-rows: 1
31
+ :widths: 30 30 50
32
+
33
+ * - Boo
34
+ - API
35
+ - Example
36
+ * - Foo
37
+ - List Foo
38
+ - ``GET /dummy/foo``
39
+ * - Bar
40
+ - Create Bar
41
+ - ``POST /dummy/bar``
42
+ """
43
+ def some_method(self):
44
+ """
45
+ Some method
46
+ """
47
+ return "some_result"
24
48
 
@@ -21,6 +21,36 @@ def test_table_docstring_to_markdown(app):
21
21
  result = transform_node(app, node)
22
22
 
23
23
  # Assert
24
- expected = "**dummy_param** -- \n\nDummy Param\n\nTable:\n\n:::row:::\n:::column:::\n**header1**\n:::column-end:::\n:::column:::\n**header2**\n:::column-end:::\n:::column:::\n**header3**\n:::column-end:::\n:::column:::\n**header4**\n:::column-end:::\n:::row-end:::\n:::row:::\n:::column:::\na\n:::column-end:::\n:::column:::\nb\n:::column-end:::\n:::column:::\nc\n:::column-end:::\n:::column:::\nd\n:::column-end:::\n:::row-end:::\n:::row:::\n:::column:::\ne\n:::column-end:::\n:::column:::\nf\n:::column-end:::\n:::column:::\ng\n:::column-end:::\n:::column:::\nh\n:::column-end:::\n:::row-end:::\n"
24
+ expected = "**dummy_param** -- \n\nDummy Param\n\nTable:\n\n\n:::row:::\n:::column:::\n**header1**\n:::column-end:::\n:::column:::\n**header2**\n:::column-end:::\n:::column:::\n**header3**\n:::column-end:::\n:::column:::\n**header4**\n:::column-end:::\n:::row-end:::\n:::row:::\n:::column:::\na\n:::column-end:::\n:::column:::\nb\n:::column-end:::\n:::column:::\nc\n:::column-end:::\n:::column:::\nd\n:::column-end:::\n:::row-end:::\n:::row:::\n:::column:::\ne\n:::column-end:::\n:::column:::\nf\n:::column-end:::\n:::column:::\ng\n:::column-end:::\n:::column:::\nh\n:::column-end:::\n:::row-end:::\n"
25
+ assert(result == expected)
26
+
27
+
28
+ @pytest.mark.sphinx('dummy', testroot='writer-table')
29
+ def test_list_table_docstring_to_markdown(app):
30
+ # Test data definition
31
+ objectToGenXml = 'code_with_table_desc.ExperimentalClass'
32
+ objectToGenXmlType = 'class'
33
+
34
+ # Arrange
35
+ prepare_app_envs(app, objectToGenXml)
36
+ doctree = load_rst_transform_to_doctree(app, objectToGenXmlType, objectToGenXml)
37
+
38
+ # Act - The list-table directive creates a table that should be at a different path
39
+ # Try to find the table node in the doctree
40
+ table_node = None
41
+ for node in doctree.findall(lambda x: x.tagname == 'table'):
42
+ table_node = node
43
+ break
44
+
45
+ if table_node is None:
46
+ # Fallback to the original node if table is not found
47
+ node = doctree[1][1][0][0][1][0]
48
+ else:
49
+ node = table_node
50
+
51
+ result = transform_node(app, node)
52
+
53
+ # Assert
54
+ expected = "\n\n# Supported Functions\n:::row:::\n:::column:::\n**Boo**\n:::column-end:::\n:::column:::\n**API**\n:::column-end:::\n:::column:::\n**Example**\n:::column-end:::\n:::row-end:::\n:::row:::\n:::column:::\nFoo\n:::column-end:::\n:::column:::\nList Foo\n:::column-end:::\n:::column:::\n`GET /dummy/foo`\n:::column-end:::\n:::row-end:::\n:::row:::\n:::column:::\nBar\n:::column-end:::\n:::column:::\nCreate Bar\n:::column-end:::\n:::column:::\n`POST /dummy/bar`\n:::column-end:::\n:::row-end:::\n"
25
55
  assert(result == expected)
26
56
 
@@ -572,10 +572,9 @@ class MarkdownTranslator(nodes.NodeVisitor):
572
572
  raise NotImplementedError('Nested tables are not supported.')
573
573
  self.new_state(0)
574
574
  self.table = [[]]
575
- self
576
575
 
577
576
  def depart_table(self, node):
578
- table_markdown_string = ":::row:::\n"
577
+ table_markdown_string = "\n:::row:::\n"
579
578
  for header in self.table[1]:
580
579
  table_markdown_string += ":::column:::\n"
581
580
  header = header.replace("\n", "")
@@ -597,7 +596,7 @@ class MarkdownTranslator(nodes.NodeVisitor):
597
596
 
598
597
  self.add_text(table_markdown_string)
599
598
  self.table = None
600
- self.end_state()
599
+ self.end_state(wrap=False, end=[''])
601
600
 
602
601
  def visit_acks(self, node):
603
602
  self.new_state(0)
@@ -1,4 +1,4 @@
1
1
  from .core import contents, where
2
2
 
3
3
  __all__ = ["contents", "where"]
4
- __version__ = "2025.07.09"
4
+ __version__ = "2025.07.14"
@@ -34,6 +34,7 @@ class AuthenticationRecord:
34
34
  def authority(self) -> str:
35
35
  """The authority host used to authenticate the account.
36
36
 
37
+ :return: The authority host used to authenticate the account.
37
38
  :rtype: str
38
39
  """
39
40
  return self._authority
@@ -42,6 +43,7 @@ class AuthenticationRecord:
42
43
  def client_id(self) -> str:
43
44
  """The client ID of the application which performed the original authentication.
44
45
 
46
+ :return: The client ID of the application which performed the original authentication.
45
47
  :rtype: str
46
48
  """
47
49
  return self._client_id
@@ -50,6 +52,7 @@ class AuthenticationRecord:
50
52
  def home_account_id(self) -> str:
51
53
  """A unique identifier of the account.
52
54
 
55
+ :return: A unique identifier of the account.
53
56
  :rtype: str
54
57
  """
55
58
  return self._home_account_id
@@ -58,6 +61,7 @@ class AuthenticationRecord:
58
61
  def tenant_id(self) -> str:
59
62
  """The tenant the account should authenticate in.
60
63
 
64
+ :return: The tenant the account should authenticate in.
61
65
  :rtype: str
62
66
  """
63
67
  return self._tenant_id
@@ -66,6 +70,7 @@ class AuthenticationRecord:
66
70
  def username(self) -> str:
67
71
  """The user principal or service principal name of the account.
68
72
 
73
+ :return: The user principal or service principal name of the account.
69
74
  :rtype: str
70
75
  """
71
76
  return self._username
@@ -27,6 +27,10 @@ class AzureAuthorityHostsMeta(type):
27
27
 
28
28
 
29
29
  class AzureAuthorityHosts(metaclass=AzureAuthorityHostsMeta):
30
+ """Constants for Microsoft Entra ID authority hosts.
31
+ These are used to construct authority URLs for various Azure environments.
32
+ """
33
+
30
34
  AZURE_CHINA = "login.chinacloudapi.cn"
31
35
  AZURE_GOVERNMENT = "login.microsoftonline.us"
32
36
  AZURE_PUBLIC_CLOUD = "login.microsoftonline.com"
@@ -234,7 +234,11 @@ def sanitize_output(output: str) -> str:
234
234
 
235
235
  def _run_command(command_args: List[str], timeout: int) -> str:
236
236
  # Ensure executable exists in PATH first. This avoids a subprocess call that would fail anyway.
237
- az_path = shutil.which(EXECUTABLE_NAME)
237
+ if sys.platform.startswith("win"):
238
+ # On Windows, the expected executable is az.cmd, so we check for that first, falling back to 'az' in case.
239
+ az_path = shutil.which(EXECUTABLE_NAME + ".cmd") or shutil.which(EXECUTABLE_NAME)
240
+ else:
241
+ az_path = shutil.which(EXECUTABLE_NAME)
238
242
  if not az_path:
239
243
  raise CredentialUnavailableError(message=CLI_NOT_FOUND)
240
244
 
@@ -41,15 +41,25 @@ if ($tenantId.Length -gt 0) {{
41
41
  $params['TenantId'] = $tenantId
42
42
  }}
43
43
 
44
- $useSecureString = $m.Version -ge [version]'2.17.0'
45
- if ($useSecureString) {{
44
+ if ($m.Version -ge [version]'2.17.0' -and $m.Version -lt [version]'5.0.0') {{
46
45
  $params['AsSecureString'] = $true
47
46
  }}
48
47
 
49
48
  $token = Get-AzAccessToken @params
50
49
  $tokenValue = $token.Token
51
- if ($useSecureString) {{
52
- $tokenValue = $tokenValue | ConvertFrom-SecureString -AsPlainText
50
+ if ($tokenValue -is [System.Security.SecureString]) {{
51
+ if ($PSVersionTable.PSVersion.Major -lt 7) {{
52
+ $ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($tokenValue)
53
+ try {{
54
+ $tokenValue = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr)
55
+ }}
56
+ finally {{
57
+ [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr)
58
+ }}
59
+ }}
60
+ else {{
61
+ $tokenValue = $tokenValue | ConvertFrom-SecureString -AsPlainText
62
+ }}
53
63
  }}
54
64
  Write-Output "`nazsdk%$($tokenValue)%$($token.ExpiresOn.ToUnixTimeSeconds())`n"
55
65
  """
@@ -66,6 +66,7 @@ class ClientAssertionCredential(GetTokenMixin):
66
66
  self._client.__exit__(*args)
67
67
 
68
68
  def close(self) -> None:
69
+ """Close the credential's underlying HTTP client and release resources."""
69
70
  self.__exit__()
70
71
 
71
72
  def _acquire_token_silently(self, *scopes: str, **kwargs: Any) -> Optional[AccessTokenInfo]:
@@ -37,6 +37,7 @@ class AuthenticationRequiredError(CredentialUnavailableError):
37
37
  def scopes(self) -> Iterable[str]:
38
38
  """Scopes requested during the failed authentication.
39
39
 
40
+ :return: Scopes requested during the failed authentication.
40
41
  :rtype: ~typing.Iterable[str]
41
42
  """
42
43
  return self._scopes
@@ -45,6 +46,7 @@ class AuthenticationRequiredError(CredentialUnavailableError):
45
46
  def claims(self) -> Optional[str]:
46
47
  """Additional claims required in the next authentication.
47
48
 
49
+ :return: Additional claims required in the next authentication, or None if no additional claims are required.
48
50
  :rtype: str or None
49
51
  """
50
52
  return self._claims
@@ -53,7 +53,9 @@ class AadClientCertificate:
53
53
  :return: The signature.
54
54
  :rtype: bytes
55
55
  """
56
- return self._private_key.sign(plaintext, padding.PKCS1v15(), hashes.SHA256())
56
+ return self._private_key.sign(
57
+ plaintext, padding.PKCS1v15(), hashes.SHA256() # CodeQL [SM04457] need this for backwards compatibility
58
+ )
57
59
 
58
60
  def sign_ps256(self, plaintext: bytes) -> bytes:
59
61
  """Sign bytes using PS256.
@@ -104,7 +104,7 @@ class GetTokenMixin(abc.ABC):
104
104
  :keyword options: A dictionary of options for the token request. Unknown options will be ignored. Optional.
105
105
  :paramtype options: ~azure.core.credentials.TokenRequestOptions
106
106
 
107
- :rtype: AccessTokenInfo
107
+ :rtype: ~azure.core.credentials.AccessTokenInfo
108
108
  :return: An AccessTokenInfo instance containing information about the token.
109
109
  :raises CredentialUnavailableError: the credential is unable to attempt authentication because it lacks
110
110
  required data, state, or platform support
@@ -253,6 +253,7 @@ class InteractiveCredential(MsalCredential, ABC):
253
253
  for these scopes.
254
254
  :keyword str claims: additional claims required in the token, such as those provided by
255
255
  :func:`AuthenticationRequiredError.claims`
256
+ :return: An AuthenticationRecord containing the authenticated user's information.
256
257
  :rtype: ~azure.identity.AuthenticationRecord
257
258
  :raises ~azure.core.exceptions.ClientAuthenticationError: authentication failed. The error's ``message``
258
259
  attribute gives a reason.
@@ -68,6 +68,7 @@ class MsalCredential: # pylint: disable=too-many-instance-attributes
68
68
  self._client.__exit__(*args)
69
69
 
70
70
  def close(self) -> None:
71
+ """Close the credential's underlying HTTP client and release resources."""
71
72
  self.__exit__()
72
73
 
73
74
  def _initialize_cache(self, is_cae: bool = False) -> msal.TokenCache:
@@ -2,4 +2,4 @@
2
2
  # Copyright (c) Microsoft Corporation.
3
3
  # Licensed under the MIT License.
4
4
  # ------------------------------------
5
- VERSION = "1.23.0"
5
+ VERSION = "1.23.1"
@@ -184,7 +184,11 @@ class AzureCliCredential(AsyncContextManager):
184
184
 
185
185
  async def _run_command(command_args: List[str], timeout: int) -> str:
186
186
  # Ensure executable exists in PATH first. This avoids a subprocess call that would fail anyway.
187
- az_path = shutil.which(EXECUTABLE_NAME)
187
+ if sys.platform.startswith("win"):
188
+ # On Windows, the expected executable is az.cmd, so we check for that first, falling back to 'az' in case.
189
+ az_path = shutil.which(EXECUTABLE_NAME + ".cmd") or shutil.which(EXECUTABLE_NAME)
190
+ else:
191
+ az_path = shutil.which(EXECUTABLE_NAME)
188
192
  if not az_path:
189
193
  raise CredentialUnavailableError(message=CLI_NOT_FOUND)
190
194
 
@@ -25,7 +25,7 @@ class ChainedTokenCredential(AsyncContextManager):
25
25
  https://aka.ms/azsdk/python/identity/credential-chains#chainedtokencredential-overview.
26
26
 
27
27
  :param credentials: credential instances to form the chain
28
- :type credentials: ~azure.core.credentials.AsyncTokenCredential
28
+ :type credentials: ~azure.core.credentials_async.AsyncTokenCredential
29
29
 
30
30
  .. admonition:: Example:
31
31
 
@@ -109,6 +109,7 @@ class OnBehalfOfCredential(AsyncContextManager, GetTokenMixin):
109
109
  return self
110
110
 
111
111
  async def close(self) -> None:
112
+ """Close the credential's underlying HTTP client."""
112
113
  await self._client.close()
113
114
 
114
115
  async def _acquire_token_silently(self, *scopes: str, **kwargs: Any) -> Optional[AccessTokenInfo]:
@@ -104,7 +104,7 @@ class GetTokenMixin(abc.ABC):
104
104
  :keyword options: A dictionary of options for the token request. Unknown options will be ignored. Optional.
105
105
  :paramtype options: ~azure.core.credentials.TokenRequestOptions
106
106
 
107
- :rtype: AccessTokenInfo
107
+ :rtype: ~azure.core.credentials.AccessTokenInfo
108
108
  :return: An AccessTokenInfo instance containing information about the token.
109
109
  :raises CredentialUnavailableError: the credential is unable to attempt authentication because it lacks
110
110
  required data, state, or platform support
@@ -1,4 +1,4 @@
1
1
  from .core import contents, where
2
2
 
3
3
  __all__ = ["contents", "where"]
4
- __version__ = "2025.07.09"
4
+ __version__ = "2025.07.14"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: py2docfx
3
- Version: 0.1.18rc2160234
3
+ Version: 0.1.19.dev2173761
4
4
  Summary: A package built based on Sphinx which download source code package and generate yaml files supported by docfx.
5
5
  Author: Microsoft Corporation
6
6
  License: MIT License
@@ -75,7 +75,7 @@ py2docfx/docfx_yaml/settings.py,sha256=JQZNwFebczl-zn8Yk2taAGANRi-Hw8hywtDWxqXXF
75
75
  py2docfx/docfx_yaml/translator.py,sha256=LSzNl4C-07bLbUZ5myfyWwh25cTNIIBih77Cp4tBWvo,25999
76
76
  py2docfx/docfx_yaml/utils.py,sha256=sJ6aWF9wwIWIoZL6WWsd3FQD-zb3PWrJ5QTWP7PCarY,1567
77
77
  py2docfx/docfx_yaml/write_utils.py,sha256=q5qoYWw6GVDV8a3E8IxcSLWnN9sAer42VFRgadHBkgk,305
78
- py2docfx/docfx_yaml/writer.py,sha256=c_3s3KLbKJWRaafQgSK7P_8rs42RjB4nSBj9Mi4yA9g,35972
78
+ py2docfx/docfx_yaml/writer.py,sha256=aDxz8Vc8ln0a9PKi08DIILvgMIfXqN5wArDcAQ8Iy8E,35980
79
79
  py2docfx/docfx_yaml/yaml_builder.py,sha256=S3xty_ILxEUsw1J9VCwUkSLLYAUfQDm3fYbciv70gXc,2573
80
80
  py2docfx/docfx_yaml/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
81
  py2docfx/docfx_yaml/tests/conftest.py,sha256=CykkZxaDZ-3a1EIQdGBieSmHL9FdyTE2xTJZe9QgKcg,1214
@@ -92,7 +92,7 @@ py2docfx/docfx_yaml/tests/test_translator_numpy_returns.py,sha256=nmC70WUqCRcB1t
92
92
  py2docfx/docfx_yaml/tests/test_translator_rst_returns.py,sha256=BL3nOMMTPzNPJk-P9oMANiXnJ7ocuiecbFHH4DU1n40,2942
93
93
  py2docfx/docfx_yaml/tests/test_translator_signatures.py,sha256=DM51EOb4UXLkrO1-4cQQQvvX210goAsnxKJH-4A2U2Q,1537
94
94
  py2docfx/docfx_yaml/tests/test_translator_typing.py,sha256=MVDMIaYoVN1-SjqgE_5hh1Eb3s3ep8xaI7Hn-JtQmcI,1369
95
- py2docfx/docfx_yaml/tests/test_writer_table.py,sha256=UnGYXQ-QVxin_e-HGZAHdg1LSFV0qc480ZNsqPN9OYc,1444
95
+ py2docfx/docfx_yaml/tests/test_writer_table.py,sha256=MyB4-J9bDIS_cseHmBMcA44q5tHsjhLe0b_OoBY_aGc,2891
96
96
  py2docfx/docfx_yaml/tests/test_writer_uri.py,sha256=wwdxraB5wP88OIJzuLGviit44Kesb8dvU9ajb5Ra0qA,2093
97
97
  py2docfx/docfx_yaml/tests/test_writer_versions.py,sha256=0-0VTMhbZ4ml9ryu1gYnu0mM2yIEKsBuFYb2F6grzTE,2995
98
98
  py2docfx/docfx_yaml/tests/roots/test-build-finished/code_with_signature_and_docstring.py,sha256=qvcKWL68C2aDTP8JT022nMV4EdZ50vhxVshMrHVO2sY,449
@@ -125,7 +125,7 @@ py2docfx/docfx_yaml/tests/roots/test-translator-signatures/conf.py,sha256=avcbnI
125
125
  py2docfx/docfx_yaml/tests/roots/test-translator-signatures/refered_objects.py,sha256=DJaX52mnHw9W3GSqKh75CYK87g4CczXNNjFO496Ai2U,79
126
126
  py2docfx/docfx_yaml/tests/roots/test-translator-typing/code_with_typing.py,sha256=ahfRTznIjXQZvG9NPO2uuh9BeWctec2XX47_y2mPelE,353
127
127
  py2docfx/docfx_yaml/tests/roots/test-translator-typing/conf.py,sha256=qnFx2JWf3soFQYBAG1S5jSLNoAjMbeRjsthOIcAenx0,276
128
- py2docfx/docfx_yaml/tests/roots/test-writer-table/code_with_table_desc.py,sha256=J4eFvXsymgFvjnwVUY0APtUGwuxvt-AFJjTaEaQ7zMQ,574
128
+ py2docfx/docfx_yaml/tests/roots/test-writer-table/code_with_table_desc.py,sha256=egu0ZOBuLsNNubC6mugZnCnahl7RmsfzxaiVLDPBQb8,1096
129
129
  py2docfx/docfx_yaml/tests/roots/test-writer-table/conf.py,sha256=avcbnIOV2mlGQwhMQJZC4W6UGRBRhnq1QBxjPWlySxQ,260
130
130
  py2docfx/docfx_yaml/tests/roots/test-writer-uri/code_with_uri.py,sha256=GSz1B0xiXSaddkrniVBXzW7R4jDuPq1sWU7ByBH6MxA,754
131
131
  py2docfx/docfx_yaml/tests/roots/test-writer-uri/conf.py,sha256=avcbnIOV2mlGQwhMQJZC4W6UGRBRhnq1QBxjPWlySxQ,260
@@ -166,7 +166,7 @@ py2docfx/venv/basevenv/Lib/site-packages/babel/messages/mofile.py,sha256=Qf0X-vI
166
166
  py2docfx/venv/basevenv/Lib/site-packages/babel/messages/plurals.py,sha256=jsEnofU5b4PZKIloX0MjchYSxD3r1RRZ_GfEVRuETWQ,7495
167
167
  py2docfx/venv/basevenv/Lib/site-packages/babel/messages/pofile.py,sha256=lMllxTXYRBa3m8wVsxXsJsayjCOePKYYZtFSZU5DVF4,25955
168
168
  py2docfx/venv/basevenv/Lib/site-packages/babel/messages/setuptools_frontend.py,sha256=m1l9NHuawj1pSncZeC82cUJfdwxib_C7JSUb_2EhbUM,3485
169
- py2docfx/venv/basevenv/Lib/site-packages/certifi/__init__.py,sha256=ud14loDFOAbT5DYaG7aptZWdQ_dx3-VWQJHJrSVanyk,94
169
+ py2docfx/venv/basevenv/Lib/site-packages/certifi/__init__.py,sha256=dvNDUdAXp-hzoYcf09PXzLmHIlPfypaBQPFp5esDXyo,94
170
170
  py2docfx/venv/basevenv/Lib/site-packages/certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243
171
171
  py2docfx/venv/basevenv/Lib/site-packages/certifi/core.py,sha256=XFXycndG5pf37ayeF8N32HUuDafsyhkVMbO4BAPWHa0,3394
172
172
  py2docfx/venv/basevenv/Lib/site-packages/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1990,27 +1990,27 @@ py2docfx/venv/venv1/Lib/site-packages/azure/core/utils/_pipeline_transport_rest_
1990
1990
  py2docfx/venv/venv1/Lib/site-packages/azure/core/utils/_pipeline_transport_rest_shared_async.py,sha256=H-ZWShYBzGmAa5Pw5kCulIxKjIUxm5NmjZ851MaUsMk,2852
1991
1991
  py2docfx/venv/venv1/Lib/site-packages/azure/core/utils/_utils.py,sha256=QvAQKO_XYHRrb5Z0cJpqh4NbY2ILOlaqlKgnlrweoIw,5917
1992
1992
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/__init__.py,sha256=1_aawdgVj8zUg542WFM7ndEf99uDj683OkNlNc0iQ7A,1990
1993
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_auth_record.py,sha256=tNXyczAVhrqO18TB0JQ2UiLKefPPPXHOywoilWpzVoI,3612
1993
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_auth_record.py,sha256=5EULRHUBGVeXvGhCsiRZsHJ1G1NjMVriiBp8oQUlMmo,3972
1994
1994
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_bearer_token_provider.py,sha256=Mm67LqV034i_pcz59cW_ImvkU6_sYiRgsFmEAP6fghM,1680
1995
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_constants.py,sha256=MpJs73LBUbLnTMfWr_PbxPl6-49Y_SvthYFSf59su0I,2681
1995
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_constants.py,sha256=BHS6WqiU4isdxMEtDEe_WuHQSH4l-uLLil_7Kdfc36Y,2826
1996
1996
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_enums.py,sha256=kaZnPeoAQiEYVW19_BaXFaP_rt4viwfiIRPzYuo5rGs,2399
1997
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_exceptions.py,sha256=Ilad2QoECsI81JrVIFV3gZfMEetA9EL5PoyBwzLIDWY,1954
1997
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_exceptions.py,sha256=YxKx_rcD5iWl6tcH5SzQmmQIG4ZGGNDlNgMGphYbMNM,2140
1998
1998
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_persistent_cache.py,sha256=zjPU1HBHWGxXuv6R09zBp5uPKj0sd9c8rEUzu84sA90,5835
1999
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_version.py,sha256=XlRJP1ym-TJj74JFTV30pEPI74lLR4U9VcCgH8YMNRY,170
1999
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_version.py,sha256=hYOcEXWjY--JrGCVH3ejYzdsx3FqEOD22EIIt3Ui4sw,170
2000
2000
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2001
2001
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/__init__.py,sha256=HiD0uRVJ7Okw8ICCzWrMWKeEvf2RUa3DuwdDUgIxg5s,1756
2002
2002
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/app_service.py,sha256=mc0GqUWXLjcgkZX64IV3aVmJd1M1-fo5h6ssVe0Iklo,1424
2003
2003
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/authorization_code.py,sha256=foaBIuRfVPLLKln62gsCU8ZIhIH6q7qjAxJtWvHV1Nw,7241
2004
2004
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azd_cli.py,sha256=G7gUKrdOX0E2NHe05PiubmaL7V9Gfb8gVJNAWkJmJrM,12464
2005
2005
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_arc.py,sha256=2B5SYKKGIEg8y8kC_zccSspxqVllKrIgP4WF_WD9ky0,4907
2006
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_cli.py,sha256=-cwiVbFsrMf--PbKzHhjx-hrV-c30ZtrG-wGe96BVKE,11299
2006
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_cli.py,sha256=mNaj1ATgKVxlRnzq2c22eq_UiuYCdi0JlhK7uR2lIyo,11557
2007
2007
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_ml.py,sha256=qLMRTkkecgZRwA6HoXf-9GoEp0HddbPoYioBcWYwOF4,3000
2008
2008
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_pipelines.py,sha256=QtMuhYSeSDMJo76W5OHJORRu2IRb61ueKyZoi8R2bck,8566
2009
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_powershell.py,sha256=uRTACAXyh3CNBNt1JlDUKsuetAXfJtKqE2Yj7-rPb5c,10953
2009
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_powershell.py,sha256=LMIPWbaboXrU_IjeR65DkThUpfq0jxR7gvNDHCKU-80,11378
2010
2010
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/browser.py,sha256=mkkIqHvkNPYwqcPHRQscx_qtQWDpf0TNBuxVu2ynf6Q,8307
2011
2011
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/certificate.py,sha256=uHVCvvdcjkIuamb_66ANHh6TVQAO9lUhcSjxr4J2V-0,9179
2012
2012
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/chained.py,sha256=5aSwVupdvgLtIikillHhKAAkJLC-fiivAxfl_prx3vM,10039
2013
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/client_assertion.py,sha256=cMzxMC46PU0RxWaYjjQ7pdSO6MDaXuaWBN3ZzCfhakY,3434
2013
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/client_assertion.py,sha256=i8S8rK86FQaFaAhVS_jaTJljCYufvsXA0AzG9fDCyIc,3517
2014
2014
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/client_secret.py,sha256=U4d2uOTMfXCfjTBtZLpM1_uvVDSqQgtfPlMx88oqO_8,3114
2015
2015
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/cloud_shell.py,sha256=yyuxWKBM8cp0EI6IbVuGP2LvXfkidV0se5NABBuMH7k,1928
2016
2016
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/default.py,sha256=lEDilyKQwaQj9C5F8wpQ-iQjqmqpZ83sTrq5SSc7oO0,16496
@@ -2028,18 +2028,18 @@ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/workload_ident
2028
2028
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/__init__.py,sha256=bZ5LRc-OWVx1WTrL4gPzz6BUrjlZbSC0nvcY_JUJ1uU,1586
2029
2029
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/aad_client.py,sha256=O8b9pnlc6HIRdV0YqrCjYaMOt1z8mYKPE4bOdrYtR-Q,3299
2030
2030
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/aad_client_base.py,sha256=XrKbEcpvSLbagJUvucRkNSze4cLRYYFMH6qh2ASMgf8,17087
2031
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/aadclient_certificate.py,sha256=JuKCDKkophr1D0y9DUWnX_P9DIo0tIIDHKsy3zQEw5g,2845
2031
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/aadclient_certificate.py,sha256=_rB9Y8sYtzcRYRnoQyDPIygqLr3kJFbmL70H3shfXgs,2925
2032
2032
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/auth_code_redirect_handler.py,sha256=elfvcbsKxg39C7PNOAEwJVRI8po5iouwnqKSbF_dVVM,2244
2033
2033
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/client_credential_base.py,sha256=YBEnqgTBOebvSoTaCY20qt3ue7_ovK4i0O_HyX_pC3E,2508
2034
2034
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/decorators.py,sha256=uM-aP4FsVYT2aR1BX41kdvHHs83XxB-O0vYzRq3YUw4,2877
2035
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/get_token_mixin.py,sha256=WTre9ydKPvucT3NySXpqpoOaGKFANk3lYeoong08_3s,7290
2036
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/interactive.py,sha256=jmllrTE15PjhJAp81ghmljVtrh3Ps5qayUbBL08e_yk,13848
2035
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/get_token_mixin.py,sha256=l1tAeMvUDwxvagsZdFcrhVvch8eDqr4QcEjQqBH1kyY,7314
2036
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/interactive.py,sha256=mJ7h_Ptv_ujMQbHLf1_PE9yw1Igc7rw6Pb632gx68PM,13938
2037
2037
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/linux_vscode_adapter.py,sha256=LL2ImHX7IzfSwOQ0BuvOrQ1do_X6fo_o3b3r4O77nI8,2952
2038
2038
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/macos_vscode_adapter.py,sha256=sRcYxS_xaiSaRmruqUH3_wXmDA6BWRACXNs8dnvBkNw,1202
2039
2039
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/managed_identity_base.py,sha256=pBEoUq39MElBnuvqwEAsjco2I4wznp3nxwgDkW5qiPo,2416
2040
2040
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/managed_identity_client.py,sha256=mWD_pDAjsFaUUdiVo5oupe9jt8mCEzraNs0_Wtha8_g,5982
2041
2041
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_client.py,sha256=QgBTA_rgMLCfajktZOvDwEMkecudyPZIlGU--6m2M2o,5871
2042
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_credentials.py,sha256=xP3qVooz7zqr94j0vAho3qY_-jSwNpse-HQAPKyMZdY,6041
2042
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_credentials.py,sha256=yEzbeHljbMFHJrwgQuIo6YO7jbaCx69x3e_DFXi4GAg,6124
2043
2043
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_managed_identity_client.py,sha256=rd8rRTye492y940_rUJLUgFBeMaKOBUDBa0NTUuDvjg,9695
2044
2044
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/pipeline.py,sha256=Zv7bjJhbKKq3bemZV_PRRTf0UZnIO9QtoO7ID-1-OIs,2867
2045
2045
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/shared_token_cache.py,sha256=Q4sGmpQrrxWu0yXRuZ66ndqxa8CjHORvTp2Suegz2sY,12555
@@ -2053,12 +2053,12 @@ py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/app_servic
2053
2053
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/authorization_code.py,sha256=jMxorvZj43t71__8jnXS2-X75fjZa2pTjw2YEx_7vd0,7425
2054
2054
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azd_cli.py,sha256=wVYeEv74vzXKMRmESJxXl0RpU5W4Tenghdy8CYPh6C4,11040
2055
2055
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_arc.py,sha256=ottnsKp-t7mpUXrn1I_TtgHKqT75WsZR5qGMkz7_mF0,1857
2056
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_cli.py,sha256=E_8jWvBxBWD94jA5fW3nBAN2LSovfNYH2o2Qa6MJzic,9967
2056
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_cli.py,sha256=euWikYiFLzCcwjo5eZgYhPTCQXOSgijuPfuSt0mN7zo,10225
2057
2057
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_ml.py,sha256=D7hQWuNLFHQb60Za5cXFeAK7aRT5ta0i8banjc4j0tQ,827
2058
2058
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_pipelines.py,sha256=jNGC1o_pG6cZ8zaJFN6dOZQpvMyEzVdf4EYMqwQV-AQ,7458
2059
2059
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_powershell.py,sha256=7714U8tdogsNq6kUYQdLDH9afvdYiFnWth7ayFE29pc,8758
2060
2060
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/certificate.py,sha256=a_j-ZM4V9Bb6M1gskSCVSjhKNWNQGIdfYYNNXXqRYJw,3953
2061
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/chained.py,sha256=tZqdoh8YEdyRZudYKg6F8OZqfj_2gFeyA_qymRF6xus,9653
2061
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/chained.py,sha256=9AYlJa6lhbKCyfR8-83GnZ6lww7v-W_ckA9GMrgb9s0,9659
2062
2062
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/client_assertion.py,sha256=f46y6n1fMTTBaEZaMc9Dux7TwcSwGXkQq4pScLf8Jic,3511
2063
2063
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/client_secret.py,sha256=JHI9N_0qzvKpV_RvMMjChfnPMRtbPb7FF_n6GIVnKRk,3218
2064
2064
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/cloud_shell.py,sha256=jJ4b3hacR-Mzk3vcwvzbxwF4DrN60uyHv1BIhUzD3bA,1225
@@ -2066,7 +2066,7 @@ py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/default.py
2066
2066
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/environment.py,sha256=89Ow1EQ000EN66axjgDDvJlb4uLAdgvzYoYGNytAzdg,7904
2067
2067
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/imds.py,sha256=IsANbJ1R8JbJ7OAlUa2sy6rXfnT51goG49gIAahNfug,4078
2068
2068
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/managed_identity.py,sha256=JlZqlGuCQP0iSlUF1LTsFSNTD6nZYoLypk3cyTbj-Co,9391
2069
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/on_behalf_of.py,sha256=M6kn3uC-04wywCl9KpuYX1VvFJJBIfIT25TllDhxgzA,7300
2069
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/on_behalf_of.py,sha256=fNVV-g-2PN5jShnTkjnHF1o7SFNvCPFE98-f6od0L-A,7361
2070
2070
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/service_fabric.py,sha256=xJtnzR__JzHixCV63E-P1OS3Ecqh7qsTfXMMEUG4BIA,1808
2071
2071
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/shared_cache.py,sha256=EIdUzL98uKA4Mncm_7hcGo-R9qqTbaCAzx15JM_DVO8,7434
2072
2072
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/vscode.py,sha256=7WoFy3EcDVsW6abPdiZb7KmqpwwbGbXJ58btU6tMH5U,6934
@@ -2074,14 +2074,14 @@ py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/workload_i
2074
2074
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/__init__.py,sha256=kqVXG7igSXSP_Gi4MzJPHoXaudlQV18A7U1qNEvXeMM,838
2075
2075
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/aad_client.py,sha256=nDPSqqrFjtmm5xWLc7exa3aWxDvhwwge8yEZ__5ZtrQ,4260
2076
2076
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/decorators.py,sha256=aw8JChj6khlmXPkjbMtypcvUgwfyIiUlUF1227nFREI,2940
2077
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/get_token_mixin.py,sha256=lcTyehjuQ3ztNNZHw6pGnE8AQgm-3fgpru1PzGyMTBg,7347
2077
+ py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/get_token_mixin.py,sha256=vsY5H_UOAVMVFpqs8TU0G7RoFjYNcA21lzdTe3nviCg,7371
2078
2078
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/managed_identity_base.py,sha256=-F_2QCSSM-WSk_BrGYV_6chvLeF-uZ0XOoANWK_HK84,2735
2079
2079
  py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/managed_identity_client.py,sha256=5WhFml6NNwDWKWy60H_GfX34gedwgdk9ogxwl1bT_1A,1514
2080
2080
  py2docfx/venv/venv1/Lib/site-packages/cachetools/__init__.py,sha256=cutUU6fB1bIMih0ro_TVCPKJTPwM-qP4fS_PyNfQlWs,21803
2081
2081
  py2docfx/venv/venv1/Lib/site-packages/cachetools/_decorators.py,sha256=4_u0GL89t2BOLGwnK8CueiFtyHKK2zydoHj9aqnsMM4,3832
2082
2082
  py2docfx/venv/venv1/Lib/site-packages/cachetools/func.py,sha256=aOVfSkuNWMRADpkHZGK7LeJ_VZ8wljzbRwIAliOuhAg,3719
2083
2083
  py2docfx/venv/venv1/Lib/site-packages/cachetools/keys.py,sha256=AOgfoi-oioBOnEEk115_9qs0HKISrYnbcV4F0hyZ1yk,1777
2084
- py2docfx/venv/venv1/Lib/site-packages/certifi/__init__.py,sha256=ud14loDFOAbT5DYaG7aptZWdQ_dx3-VWQJHJrSVanyk,94
2084
+ py2docfx/venv/venv1/Lib/site-packages/certifi/__init__.py,sha256=dvNDUdAXp-hzoYcf09PXzLmHIlPfypaBQPFp5esDXyo,94
2085
2085
  py2docfx/venv/venv1/Lib/site-packages/certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243
2086
2086
  py2docfx/venv/venv1/Lib/site-packages/certifi/core.py,sha256=XFXycndG5pf37ayeF8N32HUuDafsyhkVMbO4BAPWHa0,3394
2087
2087
  py2docfx/venv/venv1/Lib/site-packages/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -3913,7 +3913,7 @@ py2docfx/venv/venv1/Lib/site-packages/wheel/_commands/convert.py,sha256=0wSJMU0m
3913
3913
  py2docfx/venv/venv1/Lib/site-packages/wheel/_commands/pack.py,sha256=o3iwjfRHl7N9ul-M2kHbewLJZnqBLAWf0tzUCwoiTMw,3078
3914
3914
  py2docfx/venv/venv1/Lib/site-packages/wheel/_commands/tags.py,sha256=Rv2ySVb8-qX3osKp3uJgxcIMXkjt43XUD0-zvC6KvnY,4775
3915
3915
  py2docfx/venv/venv1/Lib/site-packages/wheel/_commands/unpack.py,sha256=Y_J7ynxPSoFFTT7H0fMgbBlVErwyDGcObgme5MBuz58,1021
3916
- py2docfx-0.1.18rc2160234.dist-info/METADATA,sha256=J0uF0u-fTU1wnJSyqVYTjSlr7QrGFHkN1DXX8Vw8LV8,546
3917
- py2docfx-0.1.18rc2160234.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
3918
- py2docfx-0.1.18rc2160234.dist-info/top_level.txt,sha256=5dH2uP81dczt_qQJ38wiZ-gzoVWasfiJALWRSjdbnYU,9
3919
- py2docfx-0.1.18rc2160234.dist-info/RECORD,,
3916
+ py2docfx-0.1.19.dev2173761.dist-info/METADATA,sha256=zbIk782NaQx6NAHWvOkq-pcKFy8Tyw_p1nrHyOa7WyY,548
3917
+ py2docfx-0.1.19.dev2173761.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
3918
+ py2docfx-0.1.19.dev2173761.dist-info/top_level.txt,sha256=5dH2uP81dczt_qQJ38wiZ-gzoVWasfiJALWRSjdbnYU,9
3919
+ py2docfx-0.1.19.dev2173761.dist-info/RECORD,,