ant-ray-nightly 3.0.0.dev20251012__cp310-cp310-macosx_14_0_arm64.whl → 3.0.0.dev20251017__cp310-cp310-macosx_14_0_arm64.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.

Potentially problematic release.


This version of ant-ray-nightly might be problematic. Click here for more details.

Files changed (19) hide show
  1. {ant_ray_nightly-3.0.0.dev20251012.dist-info → ant_ray_nightly-3.0.0.dev20251017.dist-info}/METADATA +85 -85
  2. {ant_ray_nightly-3.0.0.dev20251012.dist-info → ant_ray_nightly-3.0.0.dev20251017.dist-info}/RECORD +18 -18
  3. ray/_private/runtime_env/agent/thirdparty_files/idna/codec.py +1 -1
  4. ray/_private/runtime_env/agent/thirdparty_files/idna/core.py +1 -1
  5. ray/_private/runtime_env/agent/thirdparty_files/idna/idnadata.py +72 -6
  6. ray/_private/runtime_env/agent/thirdparty_files/idna/package_data.py +1 -1
  7. ray/_private/runtime_env/agent/thirdparty_files/idna/uts46data.py +891 -731
  8. ray/_private/runtime_env/agent/thirdparty_files/{idna-3.10.dist-info → idna-3.11.dist-info}/METADATA +37 -78
  9. ray/_private/runtime_env/agent/thirdparty_files/idna-3.11.dist-info/RECORD +22 -0
  10. ray/_private/runtime_env/agent/thirdparty_files/{idna-3.10.dist-info → idna-3.11.dist-info}/WHEEL +1 -1
  11. ray/_private/runtime_env/agent/thirdparty_files/{idna-3.10.dist-info → idna-3.11.dist-info/licenses}/LICENSE.md +1 -1
  12. ray/core/src/ray/gcs/gcs_server +0 -0
  13. ray/thirdparty_files/setproctitle-1.2.2.dist-info/RECORD +1 -1
  14. ray/thirdparty_files/setproctitle.cpython-310-darwin.so +0 -0
  15. ray/_private/runtime_env/agent/thirdparty_files/idna-3.10.dist-info/RECORD +0 -22
  16. {ant_ray_nightly-3.0.0.dev20251012.dist-info → ant_ray_nightly-3.0.0.dev20251017.dist-info}/WHEEL +0 -0
  17. {ant_ray_nightly-3.0.0.dev20251012.dist-info → ant_ray_nightly-3.0.0.dev20251017.dist-info}/entry_points.txt +0 -0
  18. {ant_ray_nightly-3.0.0.dev20251012.dist-info → ant_ray_nightly-3.0.0.dev20251017.dist-info}/top_level.txt +0 -0
  19. /ray/_private/runtime_env/agent/thirdparty_files/{idna-3.10.dist-info → idna-3.11.dist-info}/INSTALLER +0 -0
@@ -1,31 +1,31 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: idna
3
- Version: 3.10
3
+ Version: 3.11
4
4
  Summary: Internationalized Domain Names in Applications (IDNA)
5
5
  Author-email: Kim Davies <kim+pypi@gumleaf.org>
6
- Requires-Python: >=3.6
6
+ Requires-Python: >=3.8
7
7
  Description-Content-Type: text/x-rst
8
+ License-Expression: BSD-3-Clause
8
9
  Classifier: Development Status :: 5 - Production/Stable
9
10
  Classifier: Intended Audience :: Developers
10
11
  Classifier: Intended Audience :: System Administrators
11
- Classifier: License :: OSI Approved :: BSD License
12
12
  Classifier: Operating System :: OS Independent
13
13
  Classifier: Programming Language :: Python
14
14
  Classifier: Programming Language :: Python :: 3
15
15
  Classifier: Programming Language :: Python :: 3 :: Only
16
- Classifier: Programming Language :: Python :: 3.6
17
- Classifier: Programming Language :: Python :: 3.7
18
16
  Classifier: Programming Language :: Python :: 3.8
19
17
  Classifier: Programming Language :: Python :: 3.9
20
18
  Classifier: Programming Language :: Python :: 3.10
21
19
  Classifier: Programming Language :: Python :: 3.11
22
20
  Classifier: Programming Language :: Python :: 3.12
23
21
  Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
24
23
  Classifier: Programming Language :: Python :: Implementation :: CPython
25
24
  Classifier: Programming Language :: Python :: Implementation :: PyPy
26
25
  Classifier: Topic :: Internet :: Name Service (DNS)
27
26
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
28
27
  Classifier: Topic :: Utilities
28
+ License-File: LICENSE.md
29
29
  Requires-Dist: ruff >= 0.6.2 ; extra == "all"
30
30
  Requires-Dist: mypy >= 1.11.2 ; extra == "all"
31
31
  Requires-Dist: pytest >= 8.3.2 ; extra == "all"
@@ -38,19 +38,17 @@ Provides-Extra: all
38
38
  Internationalized Domain Names in Applications (IDNA)
39
39
  =====================================================
40
40
 
41
- Support for the Internationalized Domain Names in
42
- Applications (IDNA) protocol as specified in `RFC 5891
43
- <https://tools.ietf.org/html/rfc5891>`_. This is the latest version of
44
- the protocol and is sometimes referred to as “IDNA 2008”.
45
-
46
- This library also provides support for Unicode Technical
47
- Standard 46, `Unicode IDNA Compatibility Processing
41
+ Support for `Internationalized Domain Names in
42
+ Applications (IDNA) <https://tools.ietf.org/html/rfc5891>`_
43
+ and `Unicode IDNA Compatibility Processing
48
44
  <https://unicode.org/reports/tr46/>`_.
49
45
 
50
- This acts as a suitable replacement for the “encodings.idna”
46
+ The latest versions of these standards supplied here provide
47
+ more comprehensive language coverage and reduce the potential of
48
+ allowing domains with known security vulnerabilities. This library
49
+ is a suitable replacement for the “encodings.idna”
51
50
  module that comes with the Python standard library, but which
52
- only supports the older superseded IDNA specification (`RFC 3490
53
- <https://tools.ietf.org/html/rfc3490>`_).
51
+ only supports an older superseded IDNA specification from 2003.
54
52
 
55
53
  Basic functions are simply executed:
56
54
 
@@ -66,7 +64,8 @@ Basic functions are simply executed:
66
64
  Installation
67
65
  ------------
68
66
 
69
- This package is available for installation from PyPI:
67
+ This package is available for installation from PyPI via the
68
+ typical mechanisms, such as:
70
69
 
71
70
  .. code-block:: bash
72
71
 
@@ -77,7 +76,8 @@ Usage
77
76
  -----
78
77
 
79
78
  For typical usage, the ``encode`` and ``decode`` functions will take a
80
- domain name argument and perform a conversion to A-labels or U-labels
79
+ domain name argument and perform a conversion to ASCII compatible encoding
80
+ (known as A-labels), or to Unicode strings (known as U-labels)
81
81
  respectively.
82
82
 
83
83
  .. code-block:: pycon
@@ -88,17 +88,6 @@ respectively.
88
88
  >>> print(idna.decode('xn--eckwd4c7c.xn--zckzah'))
89
89
  ドメイン.テスト
90
90
 
91
- You may use the codec encoding and decoding methods using the
92
- ``idna.codec`` module:
93
-
94
- .. code-block:: pycon
95
-
96
- >>> import idna.codec
97
- >>> print('домен.испытание'.encode('idna2008'))
98
- b'xn--d1acufc.xn--80akhbyknj4f'
99
- >>> print(b'xn--d1acufc.xn--80akhbyknj4f'.decode('idna2008'))
100
- домен.испытание
101
-
102
91
  Conversions can be applied at a per-label basis using the ``ulabel`` or
103
92
  ``alabel`` functions if necessary:
104
93
 
@@ -107,22 +96,17 @@ Conversions can be applied at a per-label basis using the ``ulabel`` or
107
96
  >>> idna.alabel('测试')
108
97
  b'xn--0zwm56d'
109
98
 
99
+
110
100
  Compatibility Mapping (UTS #46)
111
101
  +++++++++++++++++++++++++++++++
112
102
 
113
- As described in `RFC 5895 <https://tools.ietf.org/html/rfc5895>`_, the
114
- IDNA specification does not normalize input from different potential
115
- ways a user may input a domain name. This functionality, known as
116
- a “mapping”, is considered by the specification to be a local
117
- user-interface issue distinct from IDNA conversion functionality.
118
-
119
- This library provides one such mapping that was developed by the
120
- Unicode Consortium. Known as `Unicode IDNA Compatibility Processing
121
- <https://unicode.org/reports/tr46/>`_, it provides for both a regular
122
- mapping for typical applications, as well as a transitional mapping to
123
- help migrate from older IDNA 2003 applications. Strings are
124
- preprocessed according to Section 4.4 “Preprocessing for IDNA2008”
125
- prior to the IDNA operations.
103
+ This library provides support for `Unicode IDNA Compatibility
104
+ Processing <https://unicode.org/reports/tr46/>`_ which normalizes input from
105
+ different potential ways a user may input a domain prior to performing the IDNA
106
+ conversion operations. This functionality, known as a
107
+ `mapping <https://tools.ietf.org/html/rfc5895>`_, is considered by the
108
+ specification to be a local user-interface issue distinct from IDNA
109
+ conversion functionality.
126
110
 
127
111
  For example, “Königsgäßchen” is not a permissible label as *LATIN
128
112
  CAPITAL LETTER K* is not allowed (nor are capital letters in general).
@@ -140,31 +124,6 @@ conversion.
140
124
  >>> print(idna.decode('xn--knigsgchen-b4a3dun'))
141
125
  königsgäßchen
142
126
 
143
- Transitional processing provides conversions to help transition from
144
- the older 2003 standard to the current standard. For example, in the
145
- original IDNA specification, the *LATIN SMALL LETTER SHARP S* (ß) was
146
- converted into two *LATIN SMALL LETTER S* (ss), whereas in the current
147
- IDNA specification this conversion is not performed.
148
-
149
- .. code-block:: pycon
150
-
151
- >>> idna.encode('Königsgäßchen', uts46=True, transitional=True)
152
- 'xn--knigsgsschen-lcb0w'
153
-
154
- Implementers should use transitional processing with caution, only in
155
- rare cases where conversion from legacy labels to current labels must be
156
- performed (i.e. IDNA implementations that pre-date 2008). For typical
157
- applications that just need to convert labels, transitional processing
158
- is unlikely to be beneficial and could produce unexpected incompatible
159
- results.
160
-
161
- ``encodings.idna`` Compatibility
162
- ++++++++++++++++++++++++++++++++
163
-
164
- Function calls from the Python built-in ``encodings.idna`` module are
165
- mapped to their IDNA 2008 equivalents using the ``idna.compat`` module.
166
- Simply substitute the ``import`` clause in your code to refer to the new
167
- module name.
168
127
 
169
128
  Exceptions
170
129
  ----------
@@ -178,7 +137,7 @@ when the error reflects an illegal combination of left-to-right and
178
137
  right-to-left characters in a label; ``idna.InvalidCodepoint`` when
179
138
  a specific codepoint is an illegal character in an IDN label (i.e.
180
139
  INVALID); and ``idna.InvalidCodepointContext`` when the codepoint is
181
- illegal based on its positional context (i.e. it is CONTEXTO or CONTEXTJ
140
+ illegal based on its position in the string (i.e. it is CONTEXTO or CONTEXTJ
182
141
  but the contextual requirements are not satisfied.)
183
142
 
184
143
  Building and Diagnostics
@@ -186,8 +145,8 @@ Building and Diagnostics
186
145
 
187
146
  The IDNA and UTS 46 functionality relies upon pre-calculated lookup
188
147
  tables for performance. These tables are derived from computing against
189
- eligibility criteria in the respective standards. These tables are
190
- computed using the command-line script ``tools/idna-data``.
148
+ eligibility criteria in the respective standards using the command-line
149
+ script ``tools/idna-data``.
191
150
 
192
151
  This tool will fetch relevant codepoint data from the Unicode repository
193
152
  and perform the required calculations to identify eligibility. There are
@@ -222,17 +181,13 @@ Additional Notes
222
181
  * **Packages**. The latest tagged release version is published in the
223
182
  `Python Package Index <https://pypi.org/project/idna/>`_.
224
183
 
225
- * **Version support**. This library supports Python 3.6 and higher.
184
+ * **Version support**. This library supports Python 3.8 and higher.
226
185
  As this library serves as a low-level toolkit for a variety of
227
186
  applications, many of which strive for broad compatibility with older
228
187
  Python versions, there is no rush to remove older interpreter support.
229
- Removing support for older versions should be well justified in that the
230
- maintenance burden has become too high.
231
-
232
- * **Python 2**. Python 2 is supported by version 2.x of this library.
233
- Use "idna<3" in your requirements file if you need this library for
234
- a Python 2 application. Be advised that these versions are no longer
235
- actively developed.
188
+ Support for older versions are likely to be removed from new releases
189
+ as automated tests can no longer easily be run, i.e. once the Python
190
+ version is officially end-of-life.
236
191
 
237
192
  * **Testing**. The library has a test suite based on each rule of the
238
193
  IDNA specification, as well as tests that are provided as part of the
@@ -248,3 +203,7 @@ Additional Notes
248
203
  first, and then falling back to using `encodings.idna`. See `the Github
249
204
  project <https://github.com/kjd/idna/issues/18>`_ for more discussion.
250
205
 
206
+ * **Transitional processing**. Unicode 16.0.0 removed transitional
207
+ processing so the `transitional` argument for the encode() method
208
+ no longer has any effect and will be removed at a later date.
209
+
@@ -0,0 +1,22 @@
1
+ idna-3.11.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
2
+ idna-3.11.dist-info/METADATA,sha256=fCwSww9SuiN8TIHllFSASUQCW55hAs8dzKnr9RaEEbA,8378
3
+ idna-3.11.dist-info/RECORD,,
4
+ idna-3.11.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
5
+ idna-3.11.dist-info/licenses/LICENSE.md,sha256=t6M2q_OwThgOwGXN0W5wXQeeHMehT5EKpukYfza5zYc,1541
6
+ idna/__init__.py,sha256=MPqNDLZbXqGaNdXxAFhiqFPKEQXju2jNQhCey6-5eJM,868
7
+ idna/__pycache__/__init__.cpython-310.pyc,,
8
+ idna/__pycache__/codec.cpython-310.pyc,,
9
+ idna/__pycache__/compat.cpython-310.pyc,,
10
+ idna/__pycache__/core.cpython-310.pyc,,
11
+ idna/__pycache__/idnadata.cpython-310.pyc,,
12
+ idna/__pycache__/intranges.cpython-310.pyc,,
13
+ idna/__pycache__/package_data.cpython-310.pyc,,
14
+ idna/__pycache__/uts46data.cpython-310.pyc,,
15
+ idna/codec.py,sha256=M2SGWN7cs_6B32QmKTyTN6xQGZeYQgQ2wiX3_DR6loE,3438
16
+ idna/compat.py,sha256=RzLy6QQCdl9784aFhb2EX9EKGCJjg0P3PilGdeXXcx8,316
17
+ idna/core.py,sha256=P26_XVycuMTZ1R2mNK1ZREVzM5mvTzdabBXfyZVU1Lc,13246
18
+ idna/idnadata.py,sha256=SG8jhaGE53iiD6B49pt2pwTv_UvClciWE-N54oR2p4U,79623
19
+ idna/intranges.py,sha256=amUtkdhYcQG8Zr-CoMM_kVRacxkivC1WgxN1b63KKdU,1898
20
+ idna/package_data.py,sha256=_CUavOxobnbyNG2FLyHoN8QHP3QM9W1tKuw7eq9QwBk,21
21
+ idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ idna/uts46data.py,sha256=H9J35VkD0F9L9mKOqjeNGd2A-Va6FlPoz6Jz4K7h-ps,243725
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: flit 3.9.0
2
+ Generator: flit 3.12.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,6 +1,6 @@
1
1
  BSD 3-Clause License
2
2
 
3
- Copyright (c) 2013-2024, Kim Davies and contributors.
3
+ Copyright (c) 2013-2025, Kim Davies and contributors.
4
4
  All rights reserved.
5
5
 
6
6
  Redistribution and use in source and binary forms, with or without
Binary file
@@ -4,4 +4,4 @@ setproctitle-1.2.2.dist-info/RECORD,,
4
4
  setproctitle-1.2.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  setproctitle-1.2.2.dist-info/WHEEL,sha256=Ow4-w2qlw_0cBxl5Cp1ublQBd1_y1XeER1FG5UUwpfk,109
6
6
  setproctitle-1.2.2.dist-info/top_level.txt,sha256=khlu2SuNEK2Ct594XhMTT62ll8p0oFza-4dmzUFTBhQ,13
7
- setproctitle.cpython-310-darwin.so,sha256=BsI5ZtM01yTTs17Pl1izeAxXplR0bDQkocrlY_cVZcM,56256
7
+ setproctitle.cpython-310-darwin.so,sha256=YloR6FPKKRWJK2Veb8NWYEUM9lap7FnkBWnyNZeeMF0,56256
@@ -1,22 +0,0 @@
1
- idna-3.10.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
2
- idna-3.10.dist-info/LICENSE.md,sha256=pZ8LDvNjWHQQmkRhykT_enDVBpboFHZ7-vch1Mmw2w8,1541
3
- idna-3.10.dist-info/METADATA,sha256=URR5ZyDfQ1PCEGhkYoojqfi2Ra0tau2--lhwG4XSfjI,10158
4
- idna-3.10.dist-info/RECORD,,
5
- idna-3.10.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
6
- idna/__init__.py,sha256=MPqNDLZbXqGaNdXxAFhiqFPKEQXju2jNQhCey6-5eJM,868
7
- idna/__pycache__/__init__.cpython-310.pyc,,
8
- idna/__pycache__/codec.cpython-310.pyc,,
9
- idna/__pycache__/compat.cpython-310.pyc,,
10
- idna/__pycache__/core.cpython-310.pyc,,
11
- idna/__pycache__/idnadata.cpython-310.pyc,,
12
- idna/__pycache__/intranges.cpython-310.pyc,,
13
- idna/__pycache__/package_data.cpython-310.pyc,,
14
- idna/__pycache__/uts46data.cpython-310.pyc,,
15
- idna/codec.py,sha256=PEew3ItwzjW4hymbasnty2N2OXvNcgHB-JjrBuxHPYY,3422
16
- idna/compat.py,sha256=RzLy6QQCdl9784aFhb2EX9EKGCJjg0P3PilGdeXXcx8,316
17
- idna/core.py,sha256=YJYyAMnwiQEPjVC4-Fqu_p4CJ6yKKuDGmppBNQNQpFs,13239
18
- idna/idnadata.py,sha256=W30GcIGvtOWYwAjZj4ZjuouUutC6ffgNuyjJy7fZ-lo,78306
19
- idna/intranges.py,sha256=amUtkdhYcQG8Zr-CoMM_kVRacxkivC1WgxN1b63KKdU,1898
20
- idna/package_data.py,sha256=q59S3OXsc5VI8j6vSD0sGBMyk6zZ4vWFREE88yCJYKs,21
21
- idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- idna/uts46data.py,sha256=rt90K9J40gUSwppDPCrhjgi5AA6pWM65dEGRSf6rIhM,239289