pex 2.54.2__py2.py3-none-any.whl → 2.69.0__py2.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.
Potentially problematic release.
This version of pex might be problematic. Click here for more details.
- pex/auth.py +1 -1
- pex/bin/pex.py +15 -2
- pex/build_backend/configuration.py +5 -5
- pex/build_backend/wrap.py +27 -23
- pex/build_system/pep_517.py +4 -1
- pex/cache/dirs.py +17 -12
- pex/cli/commands/lock.py +302 -165
- pex/cli/commands/pip/core.py +4 -12
- pex/cli/commands/pip/wheel.py +1 -1
- pex/cli/commands/run.py +13 -20
- pex/cli/commands/venv.py +85 -16
- pex/cli/pex.py +11 -4
- pex/common.py +57 -7
- pex/compatibility.py +1 -1
- pex/dependency_configuration.py +87 -15
- pex/dist_metadata.py +143 -25
- pex/docs/html/_pagefind/fragment/en_4250138.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_7125dad.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_785d562.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_8e94bb8.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_a0396bb.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_a8a3588.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_c07d988.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_d718411.pf_fragment +0 -0
- pex/docs/html/_pagefind/index/en_a2e3c5e.pf_index +0 -0
- pex/docs/html/_pagefind/pagefind-entry.json +1 -1
- pex/docs/html/_pagefind/pagefind.en_4ce1afa9e3.pf_meta +0 -0
- pex/docs/html/_static/documentation_options.js +1 -1
- pex/docs/html/_static/pygments.css +164 -146
- pex/docs/html/_static/styles/furo.css +1 -1
- pex/docs/html/_static/styles/furo.css.map +1 -1
- pex/docs/html/api/vars.html +25 -34
- pex/docs/html/buildingpex.html +25 -34
- pex/docs/html/genindex.html +24 -33
- pex/docs/html/index.html +25 -34
- pex/docs/html/recipes.html +25 -34
- pex/docs/html/scie.html +25 -34
- pex/docs/html/search.html +24 -33
- pex/docs/html/whatispex.html +25 -34
- pex/entry_points_txt.py +98 -0
- pex/environment.py +54 -33
- pex/finders.py +1 -1
- pex/hashing.py +71 -9
- pex/installed_wheel.py +141 -0
- pex/interpreter.py +41 -38
- pex/interpreter_constraints.py +25 -25
- pex/interpreter_implementation.py +40 -0
- pex/jobs.py +13 -6
- pex/pep_376.py +68 -384
- pex/pep_425.py +11 -2
- pex/pep_427.py +937 -205
- pex/pep_508.py +4 -5
- pex/pex_builder.py +5 -8
- pex/pex_info.py +14 -9
- pex/pip/dependencies/__init__.py +85 -13
- pex/pip/dependencies/requires.py +38 -3
- pex/pip/foreign_platform/__init__.py +4 -3
- pex/pip/installation.py +2 -2
- pex/pip/local_project.py +6 -14
- pex/pip/package_repositories/__init__.py +78 -0
- pex/pip/package_repositories/link_collector.py +96 -0
- pex/pip/tool.py +139 -33
- pex/pip/vcs.py +109 -43
- pex/pip/version.py +8 -1
- pex/requirements.py +121 -16
- pex/resolve/config.py +5 -1
- pex/resolve/configured_resolve.py +32 -10
- pex/resolve/configured_resolver.py +10 -39
- pex/resolve/downloads.py +4 -3
- pex/resolve/lock_downloader.py +16 -23
- pex/resolve/lock_resolver.py +41 -51
- pex/resolve/locked_resolve.py +89 -32
- pex/resolve/locker.py +145 -101
- pex/resolve/locker_patches.py +123 -197
- pex/resolve/lockfile/create.py +232 -87
- pex/resolve/lockfile/download_manager.py +5 -1
- pex/resolve/lockfile/json_codec.py +103 -28
- pex/resolve/lockfile/model.py +13 -35
- pex/resolve/lockfile/pep_751.py +117 -98
- pex/resolve/lockfile/requires_dist.py +17 -262
- pex/resolve/lockfile/subset.py +11 -0
- pex/resolve/lockfile/targets.py +445 -0
- pex/resolve/lockfile/updater.py +22 -10
- pex/resolve/package_repository.py +406 -0
- pex/resolve/pex_repository_resolver.py +1 -1
- pex/resolve/pre_resolved_resolver.py +19 -16
- pex/resolve/project.py +233 -47
- pex/resolve/requirement_configuration.py +28 -10
- pex/resolve/resolver_configuration.py +18 -32
- pex/resolve/resolver_options.py +234 -28
- pex/resolve/resolvers.py +3 -12
- pex/resolve/target_options.py +18 -2
- pex/resolve/target_system.py +908 -0
- pex/resolve/venv_resolver.py +670 -0
- pex/resolver.py +673 -209
- pex/scie/__init__.py +40 -1
- pex/scie/model.py +2 -0
- pex/scie/science.py +25 -3
- pex/sdist.py +219 -0
- pex/sh_boot.py +24 -21
- pex/sysconfig.py +5 -3
- pex/targets.py +31 -10
- pex/third_party/__init__.py +1 -1
- pex/tools/commands/repository.py +48 -25
- pex/vendor/__init__.py +4 -9
- pex/vendor/__main__.py +65 -41
- pex/vendor/_vendored/ansicolors/.layout.json +1 -1
- pex/vendor/_vendored/ansicolors/ansicolors-1.1.8.dist-info/RECORD +11 -0
- pex/vendor/_vendored/ansicolors/ansicolors-1.1.8.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/appdirs/.layout.json +1 -1
- pex/vendor/_vendored/appdirs/appdirs-1.4.4.dist-info/RECORD +7 -0
- pex/vendor/_vendored/appdirs/appdirs-1.4.4.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/attrs/.layout.json +1 -1
- pex/vendor/_vendored/attrs/attrs-21.5.0.dev0.dist-info/RECORD +37 -0
- pex/vendor/_vendored/attrs/attrs-21.5.0.dev0.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/packaging_20_9/.layout.json +1 -1
- pex/vendor/_vendored/packaging_20_9/packaging-20.9.dist-info/RECORD +20 -0
- pex/vendor/_vendored/packaging_20_9/packaging-20.9.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/packaging_20_9/pyparsing-2.4.7.dist-info/RECORD +7 -0
- pex/vendor/_vendored/packaging_20_9/pyparsing-2.4.7.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/packaging_21_3/.layout.json +1 -1
- pex/vendor/_vendored/packaging_21_3/packaging-21.3.dist-info/RECORD +20 -0
- pex/vendor/_vendored/packaging_21_3/packaging-21.3.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/packaging_21_3/pyparsing-3.0.7.dist-info/RECORD +18 -0
- pex/vendor/_vendored/packaging_21_3/pyparsing-3.0.7.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/packaging_24_0/.layout.json +1 -1
- pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/RECORD +22 -0
- pex/vendor/_vendored/packaging_24_0/packaging-24.0.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/packaging_25_0/.layout.json +1 -1
- pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/RECORD +24 -0
- pex/vendor/_vendored/packaging_25_0/packaging-25.0.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/pip/.layout.json +1 -1
- pex/vendor/_vendored/pip/pip/_vendor/certifi/cacert.pem +63 -1
- pex/vendor/_vendored/pip/pip-20.3.4.dist-info/RECORD +388 -0
- pex/vendor/_vendored/pip/pip-20.3.4.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/setuptools/.layout.json +1 -1
- pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.dist-info/RECORD +107 -0
- pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/toml/.layout.json +1 -1
- pex/vendor/_vendored/toml/toml-0.10.2.dist-info/RECORD +11 -0
- pex/vendor/_vendored/toml/toml-0.10.2.pex-info/original-whl-info.json +1 -0
- pex/vendor/_vendored/tomli/.layout.json +1 -1
- pex/vendor/_vendored/tomli/tomli-2.0.1.dist-info/RECORD +10 -0
- pex/vendor/_vendored/tomli/tomli-2.0.1.pex-info/original-whl-info.json +1 -0
- pex/venv/installer.py +46 -19
- pex/venv/venv_pex.py +6 -3
- pex/version.py +1 -1
- pex/wheel.py +188 -40
- pex/whl.py +67 -0
- pex/windows/__init__.py +14 -11
- {pex-2.54.2.dist-info → pex-2.69.0.dist-info}/METADATA +6 -5
- {pex-2.54.2.dist-info → pex-2.69.0.dist-info}/RECORD +157 -133
- {pex-2.54.2.dist-info → pex-2.69.0.dist-info}/entry_points.txt +1 -0
- {pex-2.54.2.dist-info → pex-2.69.0.dist-info}/pylock/pylock.toml +1 -1
- pex/docs/html/_pagefind/fragment/en_42c9d8c.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_45dd5a2.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_4ca74d2.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_77273d5.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_87a59c5.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_8dc89b5.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_9d1319b.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_e55df9d.pf_fragment +0 -0
- pex/docs/html/_pagefind/index/en_1e98c6f.pf_index +0 -0
- pex/docs/html/_pagefind/pagefind.en_d1c488ecae.pf_meta +0 -0
- pex/vendor/_vendored/ansicolors/ansicolors-1.1.8.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/appdirs/appdirs-1.4.4.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/attrs/attrs-21.5.0.dev0.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/packaging_20_9/packaging-20.9.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/packaging_20_9/pyparsing-2.4.7.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/packaging_21_3/packaging-21.3.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/packaging_21_3/pyparsing-3.0.7.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/pip/pip-20.3.4.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/toml/toml-0.10.2.dist-info/INSTALLER +0 -1
- pex/vendor/_vendored/tomli/tomli-2.0.1.dist-info/INSTALLER +0 -1
- {pex-2.54.2.dist-info → pex-2.69.0.dist-info}/WHEEL +0 -0
- {pex-2.54.2.dist-info → pex-2.69.0.dist-info}/licenses/LICENSE +0 -0
- {pex-2.54.2.dist-info → pex-2.69.0.dist-info}/top_level.txt +0 -0
|
@@ -76,157 +76,175 @@
|
|
|
76
76
|
.highlight .il { color: #7F4707 } /* Literal.Number.Integer.Long */
|
|
77
77
|
@media not print {
|
|
78
78
|
body[data-theme="dark"] .highlight pre { line-height: 125%; }
|
|
79
|
-
body[data-theme="dark"] .highlight td.linenos .normal { color:
|
|
80
|
-
body[data-theme="dark"] .highlight span.linenos { color:
|
|
79
|
+
body[data-theme="dark"] .highlight td.linenos .normal { color: #aaaaaa; background-color: transparent; padding-left: 5px; padding-right: 5px; }
|
|
80
|
+
body[data-theme="dark"] .highlight span.linenos { color: #aaaaaa; background-color: transparent; padding-left: 5px; padding-right: 5px; }
|
|
81
81
|
body[data-theme="dark"] .highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
|
82
82
|
body[data-theme="dark"] .highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
|
83
|
-
body[data-theme="dark"] .highlight .hll { background-color: #
|
|
84
|
-
body[data-theme="dark"] .highlight { background: #
|
|
85
|
-
body[data-theme="dark"] .highlight .c { color: #
|
|
86
|
-
body[data-theme="dark"] .highlight .err { color: #
|
|
87
|
-
body[data-theme="dark"] .highlight .
|
|
88
|
-
body[data-theme="dark"] .highlight .
|
|
89
|
-
body[data-theme="dark"] .highlight .
|
|
90
|
-
body[data-theme="dark"] .highlight .
|
|
91
|
-
body[data-theme="dark"] .highlight .
|
|
92
|
-
body[data-theme="dark"] .highlight .
|
|
93
|
-
body[data-theme="dark"] .highlight .
|
|
94
|
-
body[data-theme="dark"] .highlight .
|
|
95
|
-
body[data-theme="dark"] .highlight .
|
|
96
|
-
body[data-theme="dark"] .highlight .
|
|
97
|
-
body[data-theme="dark"] .highlight .
|
|
98
|
-
body[data-theme="dark"] .highlight .
|
|
99
|
-
body[data-theme="dark"] .highlight .
|
|
100
|
-
body[data-theme="dark"] .highlight .
|
|
101
|
-
body[data-theme="dark"] .highlight .
|
|
102
|
-
body[data-theme="dark"] .highlight .
|
|
103
|
-
body[data-theme="dark"] .highlight .
|
|
104
|
-
body[data-theme="dark"] .highlight .
|
|
105
|
-
body[data-theme="dark"] .highlight .
|
|
106
|
-
body[data-theme="dark"] .highlight .
|
|
107
|
-
body[data-theme="dark"] .highlight .
|
|
108
|
-
body[data-theme="dark"] .highlight .
|
|
109
|
-
body[data-theme="dark"] .highlight .
|
|
110
|
-
body[data-theme="dark"] .highlight .
|
|
111
|
-
body[data-theme="dark"] .highlight .
|
|
112
|
-
body[data-theme="dark"] .highlight .
|
|
113
|
-
body[data-theme="dark"] .highlight .
|
|
114
|
-
body[data-theme="dark"] .highlight .
|
|
115
|
-
body[data-theme="dark"] .highlight .
|
|
116
|
-
body[data-theme="dark"] .highlight .
|
|
117
|
-
body[data-theme="dark"] .highlight .
|
|
118
|
-
body[data-theme="dark"] .highlight .
|
|
119
|
-
body[data-theme="dark"] .highlight .
|
|
120
|
-
body[data-theme="dark"] .highlight .
|
|
121
|
-
body[data-theme="dark"] .highlight .
|
|
122
|
-
body[data-theme="dark"] .highlight .
|
|
123
|
-
body[data-theme="dark"] .highlight .
|
|
124
|
-
body[data-theme="dark"] .highlight .
|
|
125
|
-
body[data-theme="dark"] .highlight .
|
|
126
|
-
body[data-theme="dark"] .highlight .
|
|
127
|
-
body[data-theme="dark"] .highlight .
|
|
128
|
-
body[data-theme="dark"] .highlight .
|
|
129
|
-
body[data-theme="dark"] .highlight .
|
|
130
|
-
body[data-theme="dark"] .highlight .
|
|
131
|
-
body[data-theme="dark"] .highlight .
|
|
132
|
-
body[data-theme="dark"] .highlight .
|
|
133
|
-
body[data-theme="dark"] .highlight .
|
|
134
|
-
body[data-theme="dark"] .highlight .
|
|
135
|
-
body[data-theme="dark"] .highlight .
|
|
136
|
-
body[data-theme="dark"] .highlight .
|
|
137
|
-
body[data-theme="dark"] .highlight .
|
|
138
|
-
body[data-theme="dark"] .highlight .
|
|
139
|
-
body[data-theme="dark"] .highlight .
|
|
140
|
-
body[data-theme="dark"] .highlight .
|
|
141
|
-
body[data-theme="dark"] .highlight .
|
|
142
|
-
body[data-theme="dark"] .highlight .
|
|
143
|
-
body[data-theme="dark"] .highlight .
|
|
144
|
-
body[data-theme="dark"] .highlight .
|
|
145
|
-
body[data-theme="dark"] .highlight .
|
|
146
|
-
body[data-theme="dark"] .highlight .
|
|
147
|
-
body[data-theme="dark"] .highlight .
|
|
148
|
-
body[data-theme="dark"] .highlight .
|
|
149
|
-
body[data-theme="dark"] .highlight .
|
|
150
|
-
body[data-theme="dark"] .highlight .
|
|
151
|
-
body[data-theme="dark"] .highlight .
|
|
152
|
-
body[data-theme="dark"] .highlight .
|
|
153
|
-
body[data-theme="dark"] .highlight .
|
|
83
|
+
body[data-theme="dark"] .highlight .hll { background-color: #404040 }
|
|
84
|
+
body[data-theme="dark"] .highlight { background: #202020; color: #D0D0D0 }
|
|
85
|
+
body[data-theme="dark"] .highlight .c { color: #ABABAB; font-style: italic } /* Comment */
|
|
86
|
+
body[data-theme="dark"] .highlight .err { color: #A61717; background-color: #E3D2D2 } /* Error */
|
|
87
|
+
body[data-theme="dark"] .highlight .esc { color: #D0D0D0 } /* Escape */
|
|
88
|
+
body[data-theme="dark"] .highlight .g { color: #D0D0D0 } /* Generic */
|
|
89
|
+
body[data-theme="dark"] .highlight .k { color: #6EBF26; font-weight: bold } /* Keyword */
|
|
90
|
+
body[data-theme="dark"] .highlight .l { color: #D0D0D0 } /* Literal */
|
|
91
|
+
body[data-theme="dark"] .highlight .n { color: #D0D0D0 } /* Name */
|
|
92
|
+
body[data-theme="dark"] .highlight .o { color: #D0D0D0 } /* Operator */
|
|
93
|
+
body[data-theme="dark"] .highlight .x { color: #D0D0D0 } /* Other */
|
|
94
|
+
body[data-theme="dark"] .highlight .p { color: #D0D0D0 } /* Punctuation */
|
|
95
|
+
body[data-theme="dark"] .highlight .ch { color: #ABABAB; font-style: italic } /* Comment.Hashbang */
|
|
96
|
+
body[data-theme="dark"] .highlight .cm { color: #ABABAB; font-style: italic } /* Comment.Multiline */
|
|
97
|
+
body[data-theme="dark"] .highlight .cp { color: #FF3A3A; font-weight: bold } /* Comment.Preproc */
|
|
98
|
+
body[data-theme="dark"] .highlight .cpf { color: #ABABAB; font-style: italic } /* Comment.PreprocFile */
|
|
99
|
+
body[data-theme="dark"] .highlight .c1 { color: #ABABAB; font-style: italic } /* Comment.Single */
|
|
100
|
+
body[data-theme="dark"] .highlight .cs { color: #E50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
|
|
101
|
+
body[data-theme="dark"] .highlight .gd { color: #FF3A3A } /* Generic.Deleted */
|
|
102
|
+
body[data-theme="dark"] .highlight .ge { color: #D0D0D0; font-style: italic } /* Generic.Emph */
|
|
103
|
+
body[data-theme="dark"] .highlight .ges { color: #D0D0D0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
|
|
104
|
+
body[data-theme="dark"] .highlight .gr { color: #FF3A3A } /* Generic.Error */
|
|
105
|
+
body[data-theme="dark"] .highlight .gh { color: #FFF; font-weight: bold } /* Generic.Heading */
|
|
106
|
+
body[data-theme="dark"] .highlight .gi { color: #589819 } /* Generic.Inserted */
|
|
107
|
+
body[data-theme="dark"] .highlight .go { color: #CCC } /* Generic.Output */
|
|
108
|
+
body[data-theme="dark"] .highlight .gp { color: #AAA } /* Generic.Prompt */
|
|
109
|
+
body[data-theme="dark"] .highlight .gs { color: #D0D0D0; font-weight: bold } /* Generic.Strong */
|
|
110
|
+
body[data-theme="dark"] .highlight .gu { color: #FFF; text-decoration: underline } /* Generic.Subheading */
|
|
111
|
+
body[data-theme="dark"] .highlight .gt { color: #FF3A3A } /* Generic.Traceback */
|
|
112
|
+
body[data-theme="dark"] .highlight .kc { color: #6EBF26; font-weight: bold } /* Keyword.Constant */
|
|
113
|
+
body[data-theme="dark"] .highlight .kd { color: #6EBF26; font-weight: bold } /* Keyword.Declaration */
|
|
114
|
+
body[data-theme="dark"] .highlight .kn { color: #6EBF26; font-weight: bold } /* Keyword.Namespace */
|
|
115
|
+
body[data-theme="dark"] .highlight .kp { color: #6EBF26 } /* Keyword.Pseudo */
|
|
116
|
+
body[data-theme="dark"] .highlight .kr { color: #6EBF26; font-weight: bold } /* Keyword.Reserved */
|
|
117
|
+
body[data-theme="dark"] .highlight .kt { color: #6EBF26; font-weight: bold } /* Keyword.Type */
|
|
118
|
+
body[data-theme="dark"] .highlight .ld { color: #D0D0D0 } /* Literal.Date */
|
|
119
|
+
body[data-theme="dark"] .highlight .m { color: #51B2FD } /* Literal.Number */
|
|
120
|
+
body[data-theme="dark"] .highlight .s { color: #ED9D13 } /* Literal.String */
|
|
121
|
+
body[data-theme="dark"] .highlight .na { color: #BBB } /* Name.Attribute */
|
|
122
|
+
body[data-theme="dark"] .highlight .nb { color: #2FBCCD } /* Name.Builtin */
|
|
123
|
+
body[data-theme="dark"] .highlight .nc { color: #71ADFF; text-decoration: underline } /* Name.Class */
|
|
124
|
+
body[data-theme="dark"] .highlight .no { color: #40FFFF } /* Name.Constant */
|
|
125
|
+
body[data-theme="dark"] .highlight .nd { color: #FFA500 } /* Name.Decorator */
|
|
126
|
+
body[data-theme="dark"] .highlight .ni { color: #D0D0D0 } /* Name.Entity */
|
|
127
|
+
body[data-theme="dark"] .highlight .ne { color: #BBB } /* Name.Exception */
|
|
128
|
+
body[data-theme="dark"] .highlight .nf { color: #71ADFF } /* Name.Function */
|
|
129
|
+
body[data-theme="dark"] .highlight .nl { color: #D0D0D0 } /* Name.Label */
|
|
130
|
+
body[data-theme="dark"] .highlight .nn { color: #71ADFF; text-decoration: underline } /* Name.Namespace */
|
|
131
|
+
body[data-theme="dark"] .highlight .nx { color: #D0D0D0 } /* Name.Other */
|
|
132
|
+
body[data-theme="dark"] .highlight .py { color: #D0D0D0 } /* Name.Property */
|
|
133
|
+
body[data-theme="dark"] .highlight .nt { color: #6EBF26; font-weight: bold } /* Name.Tag */
|
|
134
|
+
body[data-theme="dark"] .highlight .nv { color: #40FFFF } /* Name.Variable */
|
|
135
|
+
body[data-theme="dark"] .highlight .ow { color: #6EBF26; font-weight: bold } /* Operator.Word */
|
|
136
|
+
body[data-theme="dark"] .highlight .pm { color: #D0D0D0 } /* Punctuation.Marker */
|
|
137
|
+
body[data-theme="dark"] .highlight .w { color: #666 } /* Text.Whitespace */
|
|
138
|
+
body[data-theme="dark"] .highlight .mb { color: #51B2FD } /* Literal.Number.Bin */
|
|
139
|
+
body[data-theme="dark"] .highlight .mf { color: #51B2FD } /* Literal.Number.Float */
|
|
140
|
+
body[data-theme="dark"] .highlight .mh { color: #51B2FD } /* Literal.Number.Hex */
|
|
141
|
+
body[data-theme="dark"] .highlight .mi { color: #51B2FD } /* Literal.Number.Integer */
|
|
142
|
+
body[data-theme="dark"] .highlight .mo { color: #51B2FD } /* Literal.Number.Oct */
|
|
143
|
+
body[data-theme="dark"] .highlight .sa { color: #ED9D13 } /* Literal.String.Affix */
|
|
144
|
+
body[data-theme="dark"] .highlight .sb { color: #ED9D13 } /* Literal.String.Backtick */
|
|
145
|
+
body[data-theme="dark"] .highlight .sc { color: #ED9D13 } /* Literal.String.Char */
|
|
146
|
+
body[data-theme="dark"] .highlight .dl { color: #ED9D13 } /* Literal.String.Delimiter */
|
|
147
|
+
body[data-theme="dark"] .highlight .sd { color: #ED9D13 } /* Literal.String.Doc */
|
|
148
|
+
body[data-theme="dark"] .highlight .s2 { color: #ED9D13 } /* Literal.String.Double */
|
|
149
|
+
body[data-theme="dark"] .highlight .se { color: #ED9D13 } /* Literal.String.Escape */
|
|
150
|
+
body[data-theme="dark"] .highlight .sh { color: #ED9D13 } /* Literal.String.Heredoc */
|
|
151
|
+
body[data-theme="dark"] .highlight .si { color: #ED9D13 } /* Literal.String.Interpol */
|
|
152
|
+
body[data-theme="dark"] .highlight .sx { color: #FFA500 } /* Literal.String.Other */
|
|
153
|
+
body[data-theme="dark"] .highlight .sr { color: #ED9D13 } /* Literal.String.Regex */
|
|
154
|
+
body[data-theme="dark"] .highlight .s1 { color: #ED9D13 } /* Literal.String.Single */
|
|
155
|
+
body[data-theme="dark"] .highlight .ss { color: #ED9D13 } /* Literal.String.Symbol */
|
|
156
|
+
body[data-theme="dark"] .highlight .bp { color: #2FBCCD } /* Name.Builtin.Pseudo */
|
|
157
|
+
body[data-theme="dark"] .highlight .fm { color: #71ADFF } /* Name.Function.Magic */
|
|
158
|
+
body[data-theme="dark"] .highlight .vc { color: #40FFFF } /* Name.Variable.Class */
|
|
159
|
+
body[data-theme="dark"] .highlight .vg { color: #40FFFF } /* Name.Variable.Global */
|
|
160
|
+
body[data-theme="dark"] .highlight .vi { color: #40FFFF } /* Name.Variable.Instance */
|
|
161
|
+
body[data-theme="dark"] .highlight .vm { color: #40FFFF } /* Name.Variable.Magic */
|
|
162
|
+
body[data-theme="dark"] .highlight .il { color: #51B2FD } /* Literal.Number.Integer.Long */
|
|
154
163
|
@media (prefers-color-scheme: dark) {
|
|
155
164
|
body:not([data-theme="light"]) .highlight pre { line-height: 125%; }
|
|
156
|
-
body:not([data-theme="light"]) .highlight td.linenos .normal { color:
|
|
157
|
-
body:not([data-theme="light"]) .highlight span.linenos { color:
|
|
165
|
+
body:not([data-theme="light"]) .highlight td.linenos .normal { color: #aaaaaa; background-color: transparent; padding-left: 5px; padding-right: 5px; }
|
|
166
|
+
body:not([data-theme="light"]) .highlight span.linenos { color: #aaaaaa; background-color: transparent; padding-left: 5px; padding-right: 5px; }
|
|
158
167
|
body:not([data-theme="light"]) .highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
|
159
168
|
body:not([data-theme="light"]) .highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
|
160
|
-
body:not([data-theme="light"]) .highlight .hll { background-color: #
|
|
161
|
-
body:not([data-theme="light"]) .highlight { background: #
|
|
162
|
-
body:not([data-theme="light"]) .highlight .c { color: #
|
|
163
|
-
body:not([data-theme="light"]) .highlight .err { color: #
|
|
164
|
-
body:not([data-theme="light"]) .highlight .
|
|
165
|
-
body:not([data-theme="light"]) .highlight .
|
|
166
|
-
body:not([data-theme="light"]) .highlight .
|
|
167
|
-
body:not([data-theme="light"]) .highlight .
|
|
168
|
-
body:not([data-theme="light"]) .highlight .
|
|
169
|
-
body:not([data-theme="light"]) .highlight .
|
|
170
|
-
body:not([data-theme="light"]) .highlight .
|
|
171
|
-
body:not([data-theme="light"]) .highlight .
|
|
172
|
-
body:not([data-theme="light"]) .highlight .
|
|
173
|
-
body:not([data-theme="light"]) .highlight .
|
|
174
|
-
body:not([data-theme="light"]) .highlight .
|
|
175
|
-
body:not([data-theme="light"]) .highlight .
|
|
176
|
-
body:not([data-theme="light"]) .highlight .
|
|
177
|
-
body:not([data-theme="light"]) .highlight .
|
|
178
|
-
body:not([data-theme="light"]) .highlight .
|
|
179
|
-
body:not([data-theme="light"]) .highlight .
|
|
180
|
-
body:not([data-theme="light"]) .highlight .
|
|
181
|
-
body:not([data-theme="light"]) .highlight .
|
|
182
|
-
body:not([data-theme="light"]) .highlight .
|
|
183
|
-
body:not([data-theme="light"]) .highlight .
|
|
184
|
-
body:not([data-theme="light"]) .highlight .
|
|
185
|
-
body:not([data-theme="light"]) .highlight .
|
|
186
|
-
body:not([data-theme="light"]) .highlight .
|
|
187
|
-
body:not([data-theme="light"]) .highlight .
|
|
188
|
-
body:not([data-theme="light"]) .highlight .
|
|
189
|
-
body:not([data-theme="light"]) .highlight .
|
|
190
|
-
body:not([data-theme="light"]) .highlight .
|
|
191
|
-
body:not([data-theme="light"]) .highlight .
|
|
192
|
-
body:not([data-theme="light"]) .highlight .
|
|
193
|
-
body:not([data-theme="light"]) .highlight .
|
|
194
|
-
body:not([data-theme="light"]) .highlight .
|
|
195
|
-
body:not([data-theme="light"]) .highlight .
|
|
196
|
-
body:not([data-theme="light"]) .highlight .
|
|
197
|
-
body:not([data-theme="light"]) .highlight .
|
|
198
|
-
body:not([data-theme="light"]) .highlight .
|
|
199
|
-
body:not([data-theme="light"]) .highlight .
|
|
200
|
-
body:not([data-theme="light"]) .highlight .
|
|
201
|
-
body:not([data-theme="light"]) .highlight .
|
|
202
|
-
body:not([data-theme="light"]) .highlight .
|
|
203
|
-
body:not([data-theme="light"]) .highlight .
|
|
204
|
-
body:not([data-theme="light"]) .highlight .
|
|
205
|
-
body:not([data-theme="light"]) .highlight .
|
|
206
|
-
body:not([data-theme="light"]) .highlight .
|
|
207
|
-
body:not([data-theme="light"]) .highlight .
|
|
208
|
-
body:not([data-theme="light"]) .highlight .
|
|
209
|
-
body:not([data-theme="light"]) .highlight .
|
|
210
|
-
body:not([data-theme="light"]) .highlight .
|
|
211
|
-
body:not([data-theme="light"]) .highlight .
|
|
212
|
-
body:not([data-theme="light"]) .highlight .
|
|
213
|
-
body:not([data-theme="light"]) .highlight .
|
|
214
|
-
body:not([data-theme="light"]) .highlight .
|
|
215
|
-
body:not([data-theme="light"]) .highlight .
|
|
216
|
-
body:not([data-theme="light"]) .highlight .
|
|
217
|
-
body:not([data-theme="light"]) .highlight .
|
|
218
|
-
body:not([data-theme="light"]) .highlight .
|
|
219
|
-
body:not([data-theme="light"]) .highlight .
|
|
220
|
-
body:not([data-theme="light"]) .highlight .
|
|
221
|
-
body:not([data-theme="light"]) .highlight .
|
|
222
|
-
body:not([data-theme="light"]) .highlight .
|
|
223
|
-
body:not([data-theme="light"]) .highlight .
|
|
224
|
-
body:not([data-theme="light"]) .highlight .
|
|
225
|
-
body:not([data-theme="light"]) .highlight .
|
|
226
|
-
body:not([data-theme="light"]) .highlight .
|
|
227
|
-
body:not([data-theme="light"]) .highlight .
|
|
228
|
-
body:not([data-theme="light"]) .highlight .
|
|
229
|
-
body:not([data-theme="light"]) .highlight .
|
|
230
|
-
body:not([data-theme="light"]) .highlight .
|
|
169
|
+
body:not([data-theme="light"]) .highlight .hll { background-color: #404040 }
|
|
170
|
+
body:not([data-theme="light"]) .highlight { background: #202020; color: #D0D0D0 }
|
|
171
|
+
body:not([data-theme="light"]) .highlight .c { color: #ABABAB; font-style: italic } /* Comment */
|
|
172
|
+
body:not([data-theme="light"]) .highlight .err { color: #A61717; background-color: #E3D2D2 } /* Error */
|
|
173
|
+
body:not([data-theme="light"]) .highlight .esc { color: #D0D0D0 } /* Escape */
|
|
174
|
+
body:not([data-theme="light"]) .highlight .g { color: #D0D0D0 } /* Generic */
|
|
175
|
+
body:not([data-theme="light"]) .highlight .k { color: #6EBF26; font-weight: bold } /* Keyword */
|
|
176
|
+
body:not([data-theme="light"]) .highlight .l { color: #D0D0D0 } /* Literal */
|
|
177
|
+
body:not([data-theme="light"]) .highlight .n { color: #D0D0D0 } /* Name */
|
|
178
|
+
body:not([data-theme="light"]) .highlight .o { color: #D0D0D0 } /* Operator */
|
|
179
|
+
body:not([data-theme="light"]) .highlight .x { color: #D0D0D0 } /* Other */
|
|
180
|
+
body:not([data-theme="light"]) .highlight .p { color: #D0D0D0 } /* Punctuation */
|
|
181
|
+
body:not([data-theme="light"]) .highlight .ch { color: #ABABAB; font-style: italic } /* Comment.Hashbang */
|
|
182
|
+
body:not([data-theme="light"]) .highlight .cm { color: #ABABAB; font-style: italic } /* Comment.Multiline */
|
|
183
|
+
body:not([data-theme="light"]) .highlight .cp { color: #FF3A3A; font-weight: bold } /* Comment.Preproc */
|
|
184
|
+
body:not([data-theme="light"]) .highlight .cpf { color: #ABABAB; font-style: italic } /* Comment.PreprocFile */
|
|
185
|
+
body:not([data-theme="light"]) .highlight .c1 { color: #ABABAB; font-style: italic } /* Comment.Single */
|
|
186
|
+
body:not([data-theme="light"]) .highlight .cs { color: #E50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
|
|
187
|
+
body:not([data-theme="light"]) .highlight .gd { color: #FF3A3A } /* Generic.Deleted */
|
|
188
|
+
body:not([data-theme="light"]) .highlight .ge { color: #D0D0D0; font-style: italic } /* Generic.Emph */
|
|
189
|
+
body:not([data-theme="light"]) .highlight .ges { color: #D0D0D0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
|
|
190
|
+
body:not([data-theme="light"]) .highlight .gr { color: #FF3A3A } /* Generic.Error */
|
|
191
|
+
body:not([data-theme="light"]) .highlight .gh { color: #FFF; font-weight: bold } /* Generic.Heading */
|
|
192
|
+
body:not([data-theme="light"]) .highlight .gi { color: #589819 } /* Generic.Inserted */
|
|
193
|
+
body:not([data-theme="light"]) .highlight .go { color: #CCC } /* Generic.Output */
|
|
194
|
+
body:not([data-theme="light"]) .highlight .gp { color: #AAA } /* Generic.Prompt */
|
|
195
|
+
body:not([data-theme="light"]) .highlight .gs { color: #D0D0D0; font-weight: bold } /* Generic.Strong */
|
|
196
|
+
body:not([data-theme="light"]) .highlight .gu { color: #FFF; text-decoration: underline } /* Generic.Subheading */
|
|
197
|
+
body:not([data-theme="light"]) .highlight .gt { color: #FF3A3A } /* Generic.Traceback */
|
|
198
|
+
body:not([data-theme="light"]) .highlight .kc { color: #6EBF26; font-weight: bold } /* Keyword.Constant */
|
|
199
|
+
body:not([data-theme="light"]) .highlight .kd { color: #6EBF26; font-weight: bold } /* Keyword.Declaration */
|
|
200
|
+
body:not([data-theme="light"]) .highlight .kn { color: #6EBF26; font-weight: bold } /* Keyword.Namespace */
|
|
201
|
+
body:not([data-theme="light"]) .highlight .kp { color: #6EBF26 } /* Keyword.Pseudo */
|
|
202
|
+
body:not([data-theme="light"]) .highlight .kr { color: #6EBF26; font-weight: bold } /* Keyword.Reserved */
|
|
203
|
+
body:not([data-theme="light"]) .highlight .kt { color: #6EBF26; font-weight: bold } /* Keyword.Type */
|
|
204
|
+
body:not([data-theme="light"]) .highlight .ld { color: #D0D0D0 } /* Literal.Date */
|
|
205
|
+
body:not([data-theme="light"]) .highlight .m { color: #51B2FD } /* Literal.Number */
|
|
206
|
+
body:not([data-theme="light"]) .highlight .s { color: #ED9D13 } /* Literal.String */
|
|
207
|
+
body:not([data-theme="light"]) .highlight .na { color: #BBB } /* Name.Attribute */
|
|
208
|
+
body:not([data-theme="light"]) .highlight .nb { color: #2FBCCD } /* Name.Builtin */
|
|
209
|
+
body:not([data-theme="light"]) .highlight .nc { color: #71ADFF; text-decoration: underline } /* Name.Class */
|
|
210
|
+
body:not([data-theme="light"]) .highlight .no { color: #40FFFF } /* Name.Constant */
|
|
211
|
+
body:not([data-theme="light"]) .highlight .nd { color: #FFA500 } /* Name.Decorator */
|
|
212
|
+
body:not([data-theme="light"]) .highlight .ni { color: #D0D0D0 } /* Name.Entity */
|
|
213
|
+
body:not([data-theme="light"]) .highlight .ne { color: #BBB } /* Name.Exception */
|
|
214
|
+
body:not([data-theme="light"]) .highlight .nf { color: #71ADFF } /* Name.Function */
|
|
215
|
+
body:not([data-theme="light"]) .highlight .nl { color: #D0D0D0 } /* Name.Label */
|
|
216
|
+
body:not([data-theme="light"]) .highlight .nn { color: #71ADFF; text-decoration: underline } /* Name.Namespace */
|
|
217
|
+
body:not([data-theme="light"]) .highlight .nx { color: #D0D0D0 } /* Name.Other */
|
|
218
|
+
body:not([data-theme="light"]) .highlight .py { color: #D0D0D0 } /* Name.Property */
|
|
219
|
+
body:not([data-theme="light"]) .highlight .nt { color: #6EBF26; font-weight: bold } /* Name.Tag */
|
|
220
|
+
body:not([data-theme="light"]) .highlight .nv { color: #40FFFF } /* Name.Variable */
|
|
221
|
+
body:not([data-theme="light"]) .highlight .ow { color: #6EBF26; font-weight: bold } /* Operator.Word */
|
|
222
|
+
body:not([data-theme="light"]) .highlight .pm { color: #D0D0D0 } /* Punctuation.Marker */
|
|
223
|
+
body:not([data-theme="light"]) .highlight .w { color: #666 } /* Text.Whitespace */
|
|
224
|
+
body:not([data-theme="light"]) .highlight .mb { color: #51B2FD } /* Literal.Number.Bin */
|
|
225
|
+
body:not([data-theme="light"]) .highlight .mf { color: #51B2FD } /* Literal.Number.Float */
|
|
226
|
+
body:not([data-theme="light"]) .highlight .mh { color: #51B2FD } /* Literal.Number.Hex */
|
|
227
|
+
body:not([data-theme="light"]) .highlight .mi { color: #51B2FD } /* Literal.Number.Integer */
|
|
228
|
+
body:not([data-theme="light"]) .highlight .mo { color: #51B2FD } /* Literal.Number.Oct */
|
|
229
|
+
body:not([data-theme="light"]) .highlight .sa { color: #ED9D13 } /* Literal.String.Affix */
|
|
230
|
+
body:not([data-theme="light"]) .highlight .sb { color: #ED9D13 } /* Literal.String.Backtick */
|
|
231
|
+
body:not([data-theme="light"]) .highlight .sc { color: #ED9D13 } /* Literal.String.Char */
|
|
232
|
+
body:not([data-theme="light"]) .highlight .dl { color: #ED9D13 } /* Literal.String.Delimiter */
|
|
233
|
+
body:not([data-theme="light"]) .highlight .sd { color: #ED9D13 } /* Literal.String.Doc */
|
|
234
|
+
body:not([data-theme="light"]) .highlight .s2 { color: #ED9D13 } /* Literal.String.Double */
|
|
235
|
+
body:not([data-theme="light"]) .highlight .se { color: #ED9D13 } /* Literal.String.Escape */
|
|
236
|
+
body:not([data-theme="light"]) .highlight .sh { color: #ED9D13 } /* Literal.String.Heredoc */
|
|
237
|
+
body:not([data-theme="light"]) .highlight .si { color: #ED9D13 } /* Literal.String.Interpol */
|
|
238
|
+
body:not([data-theme="light"]) .highlight .sx { color: #FFA500 } /* Literal.String.Other */
|
|
239
|
+
body:not([data-theme="light"]) .highlight .sr { color: #ED9D13 } /* Literal.String.Regex */
|
|
240
|
+
body:not([data-theme="light"]) .highlight .s1 { color: #ED9D13 } /* Literal.String.Single */
|
|
241
|
+
body:not([data-theme="light"]) .highlight .ss { color: #ED9D13 } /* Literal.String.Symbol */
|
|
242
|
+
body:not([data-theme="light"]) .highlight .bp { color: #2FBCCD } /* Name.Builtin.Pseudo */
|
|
243
|
+
body:not([data-theme="light"]) .highlight .fm { color: #71ADFF } /* Name.Function.Magic */
|
|
244
|
+
body:not([data-theme="light"]) .highlight .vc { color: #40FFFF } /* Name.Variable.Class */
|
|
245
|
+
body:not([data-theme="light"]) .highlight .vg { color: #40FFFF } /* Name.Variable.Global */
|
|
246
|
+
body:not([data-theme="light"]) .highlight .vi { color: #40FFFF } /* Name.Variable.Instance */
|
|
247
|
+
body:not([data-theme="light"]) .highlight .vm { color: #40FFFF } /* Name.Variable.Magic */
|
|
248
|
+
body:not([data-theme="light"]) .highlight .il { color: #51B2FD } /* Literal.Number.Integer.Long */
|
|
231
249
|
}
|
|
232
250
|
}
|