Spaces:
Sleeping
Sleeping
rsm-roguchi commited on
Commit ·
69a41e0
1
Parent(s): fd6b340
update requirements
Browse files- Dockerfile +5 -12
- requirements.txt +390 -0
Dockerfile
CHANGED
|
@@ -4,20 +4,13 @@ FROM python:3.12
|
|
| 4 |
# Install UV package manager
|
| 5 |
RUN pip install uv
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
# Install Python dependencies
|
| 11 |
-
RUN uv sync
|
| 12 |
|
| 13 |
-
RUN
|
| 14 |
-
ENV PATH="/app/.venv/bin:$PATH"
|
| 15 |
|
| 16 |
-
#
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
# Install browsers using venv Python
|
| 20 |
-
RUN /app/.venv/bin/python -m playwright install chromium
|
| 21 |
|
| 22 |
# Expose Shiny port
|
| 23 |
EXPOSE 7860
|
|
|
|
| 4 |
# Install UV package manager
|
| 5 |
RUN pip install uv
|
| 6 |
|
| 7 |
+
COPY requirements.txt .
|
| 8 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
+
RUN python -m playwright install chromium
|
|
|
|
| 11 |
|
| 12 |
+
# Copy project files
|
| 13 |
+
COPY . .
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
# Expose Shiny port
|
| 16 |
EXPOSE 7860
|
requirements.txt
ADDED
|
@@ -0,0 +1,390 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
aiofiles==23.2.1
|
| 2 |
+
alembic @ file:///home/conda/feedstock_root/build_artifacts/alembic_1727122811080/work
|
| 3 |
+
altair @ file:///home/conda/feedstock_root/build_artifacts/altair-split_1727892028500/work
|
| 4 |
+
annotated-types @ file:///home/conda/feedstock_root/build_artifacts/annotated-types_1716290248287/work
|
| 5 |
+
anyio @ file:///home/conda/feedstock_root/build_artifacts/anyio_1728935693959/work
|
| 6 |
+
anywidget==0.9.13
|
| 7 |
+
appdirs==1.4.4
|
| 8 |
+
archspec @ file:///home/conda/feedstock_root/build_artifacts/archspec_1708969572489/work
|
| 9 |
+
argon2-cffi @ file:///home/conda/feedstock_root/build_artifacts/argon2-cffi_1692818318753/work
|
| 10 |
+
argon2-cffi-bindings @ file:///home/conda/feedstock_root/build_artifacts/argon2-cffi-bindings_1725356585055/work
|
| 11 |
+
arrow @ file:///home/conda/feedstock_root/build_artifacts/arrow_1696128962909/work
|
| 12 |
+
asgiref==3.8.1
|
| 13 |
+
astor @ file:///home/conda/feedstock_root/build_artifacts/astor_1733838630785/work
|
| 14 |
+
asttokens @ file:///home/conda/feedstock_root/build_artifacts/asttokens_1698341106958/work
|
| 15 |
+
async-lru @ file:///home/conda/feedstock_root/build_artifacts/async-lru_1690563019058/work
|
| 16 |
+
async_generator @ file:///home/conda/feedstock_root/build_artifacts/async_generator_1722652753231/work
|
| 17 |
+
attrs @ file:///home/conda/feedstock_root/build_artifacts/attrs_1722977137225/work
|
| 18 |
+
awscli @ file:///home/conda/feedstock_root/build_artifacts/awscli_1739865871727/work
|
| 19 |
+
Babel @ file:///home/conda/feedstock_root/build_artifacts/babel_1702422572539/work
|
| 20 |
+
backoff==2.2.1
|
| 21 |
+
bash_kernel @ file:///home/conda/feedstock_root/build_artifacts/bash_kernel_1736166576131/work
|
| 22 |
+
beautifulsoup4 @ file:///home/conda/feedstock_root/build_artifacts/beautifulsoup4_1705564648255/work
|
| 23 |
+
black @ file:///home/conda/feedstock_root/build_artifacts/black-recipe_1738616016765/work
|
| 24 |
+
bleach @ file:///home/conda/feedstock_root/build_artifacts/bleach_1696630167146/work
|
| 25 |
+
blinker @ file:///home/conda/feedstock_root/build_artifacts/blinker_1715091184126/work
|
| 26 |
+
blis @ file:///home/conda/feedstock_root/build_artifacts/cython-blis_1729663829405/work
|
| 27 |
+
bokeh @ file:///home/conda/feedstock_root/build_artifacts/bokeh_1728932480540/work
|
| 28 |
+
boltons @ file:///home/conda/feedstock_root/build_artifacts/boltons_1711936407380/work
|
| 29 |
+
botocore @ file:///home/conda/feedstock_root/build_artifacts/botocore_1739845302597/work
|
| 30 |
+
Bottleneck @ file:///home/conda/feedstock_root/build_artifacts/bottleneck_1729268868751/work
|
| 31 |
+
Brotli @ file:///home/conda/feedstock_root/build_artifacts/brotli-split_1725267488082/work
|
| 32 |
+
cached-property @ file:///home/conda/feedstock_root/build_artifacts/cached_property_1615209429212/work
|
| 33 |
+
cachetools @ file:///home/conda/feedstock_root/build_artifacts/cachetools_1737517575301/work
|
| 34 |
+
catalogue @ file:///home/conda/feedstock_root/build_artifacts/catalogue_1736092420971/work
|
| 35 |
+
causal-learn==0.1.4.0
|
| 36 |
+
certifi @ file:///home/conda/feedstock_root/build_artifacts/certifi_1739515848642/work/certifi
|
| 37 |
+
certipy @ file:///home/conda/feedstock_root/build_artifacts/certipy_1726467183730/work
|
| 38 |
+
cffi @ file:///home/conda/feedstock_root/build_artifacts/cffi_1725560558132/work
|
| 39 |
+
charset-normalizer @ file:///home/conda/feedstock_root/build_artifacts/charset-normalizer_1728479282467/work
|
| 40 |
+
clarabel==0.10.0
|
| 41 |
+
click @ file:///home/conda/feedstock_root/build_artifacts/click_1692311806742/work
|
| 42 |
+
cloudpathlib @ file:///home/conda/feedstock_root/build_artifacts/cloudpathlib-meta_1729359055183/work
|
| 43 |
+
cloudpickle @ file:///home/conda/feedstock_root/build_artifacts/cloudpickle_1729059237860/work
|
| 44 |
+
colorama @ file:///home/conda/feedstock_root/build_artifacts/colorama_1666700638685/work
|
| 45 |
+
comm @ file:///home/conda/feedstock_root/build_artifacts/comm_1710320294760/work
|
| 46 |
+
conda @ file:///home/conda/feedstock_root/build_artifacts/conda_1738241127085/work
|
| 47 |
+
conda-libmamba-solver @ file:///home/conda/feedstock_root/build_artifacts/conda-libmamba-solver_1737800978214/work/src
|
| 48 |
+
conda-package-handling @ file:///home/conda/feedstock_root/build_artifacts/conda-package-handling_1729006966809/work
|
| 49 |
+
conda_package_streaming @ file:///home/conda/feedstock_root/build_artifacts/conda-package-streaming_1729004031731/work
|
| 50 |
+
confection @ file:///home/conda/feedstock_root/build_artifacts/confection_1701179097401/work
|
| 51 |
+
connectorx==0.3.3
|
| 52 |
+
contourpy @ file:///home/conda/feedstock_root/build_artifacts/contourpy_1727293529029/work
|
| 53 |
+
cryptography @ file:///home/conda/feedstock_root/build_artifacts/cryptography-split_1729286672586/work
|
| 54 |
+
cvxpy==1.6.0
|
| 55 |
+
cycler @ file:///home/conda/feedstock_root/build_artifacts/cycler_1696677705766/work
|
| 56 |
+
cymem @ file:///home/conda/feedstock_root/build_artifacts/cymem_1737125888380/work
|
| 57 |
+
Cython==0.29.37
|
| 58 |
+
cytoolz @ file:///home/conda/feedstock_root/build_artifacts/cytoolz_1728335000602/work
|
| 59 |
+
dask @ file:///home/conda/feedstock_root/build_artifacts/dask-core_1729174050417/work
|
| 60 |
+
dask-expr @ file:///home/conda/feedstock_root/build_artifacts/dask-expr_1729200954651/work
|
| 61 |
+
debugpy @ file:///home/conda/feedstock_root/build_artifacts/debugpy_1728594098955/work
|
| 62 |
+
decorator @ file:///home/conda/feedstock_root/build_artifacts/decorator_1641555617451/work
|
| 63 |
+
defusedxml @ file:///home/conda/feedstock_root/build_artifacts/defusedxml_1615232257335/work
|
| 64 |
+
dill @ file:///home/conda/feedstock_root/build_artifacts/dill_1727594984357/work
|
| 65 |
+
distributed @ file:///home/conda/feedstock_root/build_artifacts/distributed_1729197350190/work
|
| 66 |
+
distro @ file:///home/conda/feedstock_root/build_artifacts/distro_1704321475663/work
|
| 67 |
+
docutils @ file:///home/conda/feedstock_root/build_artifacts/docutils_1728488675683/work
|
| 68 |
+
dowhy==0.12
|
| 69 |
+
duckdb @ file:///home/conda/feedstock_root/build_artifacts/python-duckdb-split_1739479592999/work/tools/pythonpkg
|
| 70 |
+
duckdb_engine @ file:///home/conda/feedstock_root/build_artifacts/duckdb-engine_1737017790760/work
|
| 71 |
+
econml==0.15.1
|
| 72 |
+
entrypoints @ file:///home/conda/feedstock_root/build_artifacts/entrypoints_1643888246732/work
|
| 73 |
+
et_xmlfile @ file:///home/conda/feedstock_root/build_artifacts/et_xmlfile_1729892939528/work
|
| 74 |
+
exceptiongroup @ file:///home/conda/feedstock_root/build_artifacts/exceptiongroup_1720869315914/work
|
| 75 |
+
executing @ file:///home/conda/feedstock_root/build_artifacts/executing_1725214404607/work
|
| 76 |
+
faicons==0.2.2
|
| 77 |
+
fastapi==0.115.8
|
| 78 |
+
fastexcel==0.12.1
|
| 79 |
+
fastjsonschema @ file:///home/conda/feedstock_root/build_artifacts/python-fastjsonschema_1718477020893/work/dist
|
| 80 |
+
ffmpy==0.5.0
|
| 81 |
+
filelock==3.17.0
|
| 82 |
+
filetype @ file:///home/conda/feedstock_root/build_artifacts/filetype_1667445778563/work
|
| 83 |
+
findspark @ file:///home/conda/feedstock_root/build_artifacts/findspark_1735921127722/work
|
| 84 |
+
fonttools @ file:///home/conda/feedstock_root/build_artifacts/fonttools_1729530372367/work
|
| 85 |
+
formulaic @ file:///home/conda/feedstock_root/build_artifacts/formulaic_1734816457952/work
|
| 86 |
+
fqdn @ file:///home/conda/feedstock_root/build_artifacts/fqdn_1638810296540/work/dist
|
| 87 |
+
frozendict @ file:///home/conda/feedstock_root/build_artifacts/frozendict_1728841327252/work
|
| 88 |
+
fsspec @ file:///home/conda/feedstock_root/build_artifacts/fsspec_1729608855534/work
|
| 89 |
+
fst-pso @ file:///home/conda/feedstock_root/build_artifacts/fst-pso_1674508369029/work
|
| 90 |
+
funcy @ file:///home/conda/feedstock_root/build_artifacts/funcy_1734381131891/work
|
| 91 |
+
future @ file:///home/conda/feedstock_root/build_artifacts/future_1738926421307/work
|
| 92 |
+
FuzzyTM @ file:///home/conda/feedstock_root/build_artifacts/fuzzytm_1674510610147/work
|
| 93 |
+
gensim @ file:///home/conda/feedstock_root/build_artifacts/gensim_1707360327203/work
|
| 94 |
+
gitdb @ file:///home/conda/feedstock_root/build_artifacts/gitdb_1697791558612/work
|
| 95 |
+
GitPython @ file:///home/conda/feedstock_root/build_artifacts/gitpython_1711991025291/work
|
| 96 |
+
gmpy2 @ file:///home/conda/feedstock_root/build_artifacts/gmpy2_1725379832114/work
|
| 97 |
+
googleapis-common-protos @ file:///home/conda/feedstock_root/build_artifacts/googleapis-common-protos-feedstock_1724834223554/work
|
| 98 |
+
gradio==5.16.1
|
| 99 |
+
gradio_client==1.7.0
|
| 100 |
+
graphlib-backport @ file:///home/conda/feedstock_root/build_artifacts/graphlib-backport_1635566048409/work
|
| 101 |
+
graphviz==0.20.3
|
| 102 |
+
greenlet @ file:///home/conda/feedstock_root/build_artifacts/greenlet_1726922184666/work
|
| 103 |
+
grpcio @ file:///home/conda/feedstock_root/build_artifacts/grpc-split_1730233386122/work
|
| 104 |
+
grpcio-status @ file:///home/conda/feedstock_root/build_artifacts/grpcio-status_1727244689671/work
|
| 105 |
+
h11 @ file:///home/conda/feedstock_root/build_artifacts/h11_1664132893548/work
|
| 106 |
+
h2 @ file:///home/conda/feedstock_root/build_artifacts/h2_1634280454336/work
|
| 107 |
+
h5py @ file:///home/conda/feedstock_root/build_artifacts/h5py_1729617657254/work
|
| 108 |
+
hpack==4.0.0
|
| 109 |
+
htmltools==0.6.0
|
| 110 |
+
httpcore @ file:///home/conda/feedstock_root/build_artifacts/httpcore_1727820890233/work
|
| 111 |
+
httpx @ file:///home/conda/feedstock_root/build_artifacts/httpx_1724778349782/work
|
| 112 |
+
huggingface-hub==0.28.1
|
| 113 |
+
hyperframe @ file:///home/conda/feedstock_root/build_artifacts/hyperframe_1619110129307/work
|
| 114 |
+
idna @ file:///home/conda/feedstock_root/build_artifacts/idna_1726459485162/work
|
| 115 |
+
imagecodecs @ file:///home/conda/feedstock_root/build_artifacts/imagecodecs_1734411441407/work
|
| 116 |
+
imageio @ file:///home/conda/feedstock_root/build_artifacts/imageio_1729190692267/work
|
| 117 |
+
importlib_metadata @ file:///home/conda/feedstock_root/build_artifacts/importlib-metadata_1726082825846/work
|
| 118 |
+
importlib_resources @ file:///home/conda/feedstock_root/build_artifacts/importlib_resources_1725921340658/work
|
| 119 |
+
interface_meta @ file:///home/conda/feedstock_root/build_artifacts/interface_meta_1734284382083/work
|
| 120 |
+
ipykernel @ file:///home/conda/feedstock_root/build_artifacts/ipykernel_1719845459717/work
|
| 121 |
+
ipympl @ file:///home/conda/feedstock_root/build_artifacts/ipympl_1713251546026/work
|
| 122 |
+
ipython @ file:///home/conda/feedstock_root/build_artifacts/ipython_1729866374957/work
|
| 123 |
+
ipython-sql @ file:///home/conda/feedstock_root/build_artifacts/ipython-sql_1636816912182/work
|
| 124 |
+
ipython_genutils @ file:///home/conda/feedstock_root/build_artifacts/ipython_genutils_1716278396992/work
|
| 125 |
+
ipywidgets @ file:///home/conda/feedstock_root/build_artifacts/ipywidgets_1724334859652/work
|
| 126 |
+
isoduration @ file:///home/conda/feedstock_root/build_artifacts/isoduration_1638811571363/work/dist
|
| 127 |
+
isort @ file:///home/conda/feedstock_root/build_artifacts/isort_1738061237894/work
|
| 128 |
+
jedi @ file:///home/conda/feedstock_root/build_artifacts/jedi_1696326070614/work
|
| 129 |
+
Jinja2 @ file:///home/conda/feedstock_root/build_artifacts/jinja2_1715127149914/work
|
| 130 |
+
jmespath @ file:///home/conda/feedstock_root/build_artifacts/jmespath_1733229141657/work
|
| 131 |
+
joblib @ file:///home/conda/feedstock_root/build_artifacts/joblib_1714665484399/work
|
| 132 |
+
json5 @ file:///home/conda/feedstock_root/build_artifacts/json5_1712986206667/work
|
| 133 |
+
jsonpatch @ file:///home/conda/feedstock_root/build_artifacts/jsonpatch_1695536281965/work
|
| 134 |
+
jsonpointer @ file:///home/conda/feedstock_root/build_artifacts/jsonpointer_1725302935093/work
|
| 135 |
+
jsonschema @ file:///home/conda/feedstock_root/build_artifacts/jsonschema_1720529478715/work
|
| 136 |
+
jsonschema-specifications @ file:///tmp/tmpvslgxhz5/src
|
| 137 |
+
jupysql==0.10.17
|
| 138 |
+
jupysql-plugin==0.4.5
|
| 139 |
+
jupyter-events @ file:///home/conda/feedstock_root/build_artifacts/jupyter_events_1710805637316/work
|
| 140 |
+
jupyter-lsp @ file:///home/conda/feedstock_root/build_artifacts/jupyter-lsp-meta_1712707420468/work/jupyter-lsp
|
| 141 |
+
jupyter-server-mathjax @ file:///home/conda/feedstock_root/build_artifacts/jupyter-server-mathjax_1672324512570/work
|
| 142 |
+
jupyter_client @ file:///home/conda/feedstock_root/build_artifacts/jupyter_client_1726610684920/work
|
| 143 |
+
jupyter_core @ file:///home/conda/feedstock_root/build_artifacts/jupyter_core_1727163409502/work
|
| 144 |
+
jupyter_server @ file:///home/conda/feedstock_root/build_artifacts/jupyter_server_1720816649297/work
|
| 145 |
+
jupyter_server_terminals @ file:///home/conda/feedstock_root/build_artifacts/jupyter_server_terminals_1710262634903/work
|
| 146 |
+
jupyterhub @ file:///home/conda/feedstock_root/build_artifacts/jupyterhub-feedstock_1729524405642/work
|
| 147 |
+
jupyterlab @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_1724745148804/work
|
| 148 |
+
jupyterlab_git @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab-git_1720358782306/work
|
| 149 |
+
jupyterlab_pygments @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_pygments_1707149102966/work
|
| 150 |
+
jupyterlab_server @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_server-split_1721163288448/work
|
| 151 |
+
jupyterlab_widgets @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_widgets_1724331334887/work
|
| 152 |
+
jupytext @ file:///home/conda/feedstock_root/build_artifacts/jupytext_1739264996936/work
|
| 153 |
+
kiwisolver @ file:///home/conda/feedstock_root/build_artifacts/kiwisolver_1725459266942/work
|
| 154 |
+
langcodes @ file:///home/conda/feedstock_root/build_artifacts/langcodes_1734376437639/work
|
| 155 |
+
language_data @ file:///home/conda/feedstock_root/build_artifacts/language-data_1732032415021/work
|
| 156 |
+
lazy_loader @ file:///home/conda/feedstock_root/build_artifacts/lazy-loader_1723774329602/work
|
| 157 |
+
libmambapy @ file:///home/conda/feedstock_root/build_artifacts/mamba-split_1730842684690/work/libmambapy
|
| 158 |
+
lightgbm @ file:///home/conda/feedstock_root/build_artifacts/liblightgbm_1737912911005/work
|
| 159 |
+
lime @ file:///home/conda/feedstock_root/build_artifacts/lime_1734777765833/work
|
| 160 |
+
linearmodels @ file:///home/conda/feedstock_root/build_artifacts/linearmodels_1727187098966/work
|
| 161 |
+
linkify-it-py==2.0.3
|
| 162 |
+
llvmlite==0.43.0
|
| 163 |
+
locket @ file:///home/conda/feedstock_root/build_artifacts/locket_1650660393415/work
|
| 164 |
+
lz4 @ file:///home/conda/feedstock_root/build_artifacts/lz4_1733474241180/work
|
| 165 |
+
Mako @ file:///home/conda/feedstock_root/build_artifacts/mako_1715711344987/work
|
| 166 |
+
marisa-trie @ file:///home/conda/feedstock_root/build_artifacts/marisa-trie_1736178990851/work
|
| 167 |
+
Markdown @ file:///home/conda/feedstock_root/build_artifacts/markdown_1710435156458/work
|
| 168 |
+
markdown-it-py @ file:///home/conda/feedstock_root/build_artifacts/markdown-it-py_1733250460757/work
|
| 169 |
+
MarkupSafe==2.1.5
|
| 170 |
+
matplotlib==3.9.2
|
| 171 |
+
matplotlib-inline @ file:///home/conda/feedstock_root/build_artifacts/matplotlib-inline_1713250518406/work
|
| 172 |
+
mdit-py-plugins @ file:///home/conda/feedstock_root/build_artifacts/mdit-py-plugins_1733854715505/work
|
| 173 |
+
mdurl @ file:///home/conda/feedstock_root/build_artifacts/mdurl_1733255585584/work
|
| 174 |
+
menuinst @ file:///home/conda/feedstock_root/build_artifacts/menuinst_1725359038078/work
|
| 175 |
+
miniful @ file:///home/conda/feedstock_root/build_artifacts/miniful_1738578852010/work
|
| 176 |
+
mistune @ file:///home/conda/feedstock_root/build_artifacts/mistune_1698947099619/work
|
| 177 |
+
mizani @ file:///home/conda/feedstock_root/build_artifacts/mizani_1733850081884/work
|
| 178 |
+
mlxtend @ file:///home/conda/feedstock_root/build_artifacts/mlxtend_1737927625693/work
|
| 179 |
+
momentchi2==0.1.8
|
| 180 |
+
monotonic==1.6
|
| 181 |
+
mpmath @ file:///home/conda/feedstock_root/build_artifacts/mpmath_1678228039184/work
|
| 182 |
+
msgpack @ file:///home/conda/feedstock_root/build_artifacts/msgpack-python_1725975016068/work
|
| 183 |
+
munkres==1.1.4
|
| 184 |
+
murmurhash @ file:///home/conda/feedstock_root/build_artifacts/murmurhash_1728932916716/work
|
| 185 |
+
mypy_extensions @ file:///home/conda/feedstock_root/build_artifacts/mypy_extensions_1733230897951/work
|
| 186 |
+
narwhals @ file:///home/conda/feedstock_root/build_artifacts/narwhals_1739851660861/work
|
| 187 |
+
nbclassic @ file:///home/conda/feedstock_root/build_artifacts/nbclassic_1716838762700/work
|
| 188 |
+
nbclient @ file:///home/conda/feedstock_root/build_artifacts/nbclient_1710317608672/work
|
| 189 |
+
nbconvert @ file:///home/conda/feedstock_root/build_artifacts/nbconvert-meta_1718135430380/work
|
| 190 |
+
nbdime @ file:///home/conda/feedstock_root/build_artifacts/nbdime_1725627669057/work
|
| 191 |
+
nbformat @ file:///home/conda/feedstock_root/build_artifacts/nbformat_1712238998817/work
|
| 192 |
+
nest_asyncio @ file:///home/conda/feedstock_root/build_artifacts/nest-asyncio_1705850609492/work
|
| 193 |
+
networkx @ file:///home/conda/feedstock_root/build_artifacts/networkx_1729530778722/work
|
| 194 |
+
nltk @ file:///home/conda/feedstock_root/build_artifacts/nltk_1734309924703/work
|
| 195 |
+
notebook @ file:///home/conda/feedstock_root/build_artifacts/notebook_1724861303656/work
|
| 196 |
+
notebook_shim @ file:///home/conda/feedstock_root/build_artifacts/notebook-shim_1707957777232/work
|
| 197 |
+
numba @ file:///home/conda/feedstock_root/build_artifacts/numba_1718888016245/work
|
| 198 |
+
numexpr @ file:///home/conda/feedstock_root/build_artifacts/numexpr_1729662221511/work
|
| 199 |
+
numpy @ file:///home/conda/feedstock_root/build_artifacts/numpy_1707225359967/work/dist/numpy-1.26.4-cp312-cp312-linux_x86_64.whl#sha256=031b7d6b2e5e604d9e21fc21be713ebf28ce133ec872dce6de006742d5e49bab
|
| 200 |
+
nvidia-cublas-cu12==12.6.4.1
|
| 201 |
+
nvidia-cuda-cupti-cu12==12.6.80
|
| 202 |
+
nvidia-cuda-nvrtc-cu12==12.6.77
|
| 203 |
+
nvidia-cuda-runtime-cu12==12.6.77
|
| 204 |
+
nvidia-cudnn-cu12==9.5.1.17
|
| 205 |
+
nvidia-cufft-cu12==11.3.0.4
|
| 206 |
+
nvidia-curand-cu12==10.3.7.77
|
| 207 |
+
nvidia-cusolver-cu12==11.7.1.2
|
| 208 |
+
nvidia-cusparse-cu12==12.5.4.2
|
| 209 |
+
nvidia-cusparselt-cu12==0.6.3
|
| 210 |
+
nvidia-nccl-cu12==2.21.5
|
| 211 |
+
nvidia-nvjitlink-cu12==12.6.85
|
| 212 |
+
nvidia-nvtx-cu12==12.6.77
|
| 213 |
+
oauthlib @ file:///home/conda/feedstock_root/build_artifacts/oauthlib_1666056362788/work
|
| 214 |
+
openpyxl @ file:///home/conda/feedstock_root/build_artifacts/openpyxl_1725460884078/work
|
| 215 |
+
orjson==3.10.15
|
| 216 |
+
osqp==0.6.7.post3
|
| 217 |
+
outcome @ file:///home/conda/feedstock_root/build_artifacts/outcome_1733406188332/work
|
| 218 |
+
overrides @ file:///home/conda/feedstock_root/build_artifacts/overrides_1706394519472/work
|
| 219 |
+
packaging @ file:///home/conda/feedstock_root/build_artifacts/packaging_1718189413536/work
|
| 220 |
+
pamela @ file:///home/conda/feedstock_root/build_artifacts/pamela_1723212587578/work
|
| 221 |
+
pandas==2.2.3
|
| 222 |
+
pandocfilters @ file:///home/conda/feedstock_root/build_artifacts/pandocfilters_1631603243851/work
|
| 223 |
+
parso @ file:///home/conda/feedstock_root/build_artifacts/parso_1712320355065/work
|
| 224 |
+
partd @ file:///home/conda/feedstock_root/build_artifacts/partd_1715026491486/work
|
| 225 |
+
pathspec @ file:///home/conda/feedstock_root/build_artifacts/pathspec_1733233363808/work
|
| 226 |
+
patsy @ file:///home/conda/feedstock_root/build_artifacts/patsy_1704469236901/work
|
| 227 |
+
pexpect @ file:///home/conda/feedstock_root/build_artifacts/pexpect_1706113125309/work
|
| 228 |
+
pickleshare @ file:///home/conda/feedstock_root/build_artifacts/pickleshare_1602536217715/work
|
| 229 |
+
pillow @ file:///home/conda/feedstock_root/build_artifacts/pillow_1729065636207/work
|
| 230 |
+
pkgutil_resolve_name @ file:///home/conda/feedstock_root/build_artifacts/pkgutil-resolve-name_1694617248815/work
|
| 231 |
+
platformdirs @ file:///home/conda/feedstock_root/build_artifacts/platformdirs_1726613481435/work
|
| 232 |
+
ploomber-core==0.2.26
|
| 233 |
+
plotly @ file:///home/conda/feedstock_root/build_artifacts/plotly_1738287743623/work
|
| 234 |
+
plotnine @ file:///home/conda/feedstock_root/build_artifacts/plotnine_1735816953568/work
|
| 235 |
+
pluggy @ file:///home/conda/feedstock_root/build_artifacts/pluggy_1713667077545/work
|
| 236 |
+
polars==1.22.0
|
| 237 |
+
posthog==3.14.1
|
| 238 |
+
preshed @ file:///home/conda/feedstock_root/build_artifacts/preshed_1728945652685/work
|
| 239 |
+
prettytable @ file:///home/conda/feedstock_root/build_artifacts/prettytable_1738401694108/work
|
| 240 |
+
prometheus_client @ file:///home/conda/feedstock_root/build_artifacts/prometheus_client_1726901976720/work
|
| 241 |
+
prompt_toolkit @ file:///home/conda/feedstock_root/build_artifacts/prompt-toolkit_1727341649933/work
|
| 242 |
+
protobuf @ file:///home/conda/feedstock_root/build_artifacts/protobuf_1728668314281/work/bazel-bin/python/dist/protobuf-5.28.2-cp312-abi3-linux_x86_64.whl#sha256=f103c8b99ca0a96e2feeaa5c5589b37c02b05bd901d908f7825153340c69de0a
|
| 243 |
+
psutil @ file:///home/conda/feedstock_root/build_artifacts/psutil_1729847057810/work
|
| 244 |
+
psycopg2 @ file:///home/conda/feedstock_root/build_artifacts/psycopg2-split_1727892814430/work
|
| 245 |
+
psygnal==0.12.0
|
| 246 |
+
ptyprocess @ file:///home/conda/feedstock_root/build_artifacts/ptyprocess_1609419310487/work/dist/ptyprocess-0.7.0-py2.py3-none-any.whl
|
| 247 |
+
pure_eval @ file:///home/conda/feedstock_root/build_artifacts/pure_eval_1721585709575/work
|
| 248 |
+
py-cpuinfo @ file:///home/conda/feedstock_root/build_artifacts/py-cpuinfo_1666774466606/work
|
| 249 |
+
py4j==0.10.9.7
|
| 250 |
+
pyarrow==17.0.0
|
| 251 |
+
pyasn1 @ file:///home/conda/feedstock_root/build_artifacts/pyasn1_1733217608156/work
|
| 252 |
+
pycosat @ file:///home/conda/feedstock_root/build_artifacts/pycosat_1696355774225/work
|
| 253 |
+
pycparser @ file:///home/conda/feedstock_root/build_artifacts/pycparser_1711811537435/work
|
| 254 |
+
pycurl @ file:///home/conda/feedstock_root/build_artifacts/pycurl_1725361476421/work
|
| 255 |
+
pydantic @ file:///home/conda/feedstock_root/build_artifacts/pydantic_1726601062926/work
|
| 256 |
+
pydantic_core @ file:///home/conda/feedstock_root/build_artifacts/pydantic-core_1726524971346/work
|
| 257 |
+
pydeck @ file:///home/conda/feedstock_root/build_artifacts/pydeck_1667589451974/work
|
| 258 |
+
pydot==3.0.4
|
| 259 |
+
pydotplus @ file:///home/conda/feedstock_root/build_artifacts/pydotplus_1734535704590/work
|
| 260 |
+
pydub==0.25.1
|
| 261 |
+
pyFUME @ file:///home/conda/feedstock_root/build_artifacts/pyfume_1674509566653/work
|
| 262 |
+
Pygments @ file:///home/conda/feedstock_root/build_artifacts/pygments_1714846767233/work
|
| 263 |
+
pyhdfe @ file:///home/conda/feedstock_root/build_artifacts/pyhdfe_1735397688053/work
|
| 264 |
+
PyJWT @ file:///home/conda/feedstock_root/build_artifacts/pyjwt_1722701264352/work
|
| 265 |
+
pyLDAvis @ file:///home/conda/feedstock_root/build_artifacts/pyldavis_1736887884723/work
|
| 266 |
+
pyparsing @ file:///home/conda/feedstock_root/build_artifacts/pyparsing_1728880423364/work
|
| 267 |
+
pyrsm==1.2.0
|
| 268 |
+
PySocks @ file:///home/conda/feedstock_root/build_artifacts/pysocks_1661604839144/work
|
| 269 |
+
pyspark==4.0.0.dev2
|
| 270 |
+
python-dateutil @ file:///home/conda/feedstock_root/build_artifacts/python-dateutil_1709299778482/work
|
| 271 |
+
python-dotenv @ file:///home/conda/feedstock_root/build_artifacts/python-dotenv_1733243180666/work
|
| 272 |
+
python-json-logger @ file:///home/conda/feedstock_root/build_artifacts/python-json-logger_1677079630776/work
|
| 273 |
+
python-multipart==0.0.20
|
| 274 |
+
pytz @ file:///home/conda/feedstock_root/build_artifacts/pytz_1706886791323/work
|
| 275 |
+
PyWavelets==1.7.0
|
| 276 |
+
PyYAML @ file:///home/conda/feedstock_root/build_artifacts/pyyaml_1725456134219/work
|
| 277 |
+
pyzmq @ file:///home/conda/feedstock_root/build_artifacts/pyzmq_1728642254015/work
|
| 278 |
+
qdldl==0.1.7.post5
|
| 279 |
+
questionary==2.1.0
|
| 280 |
+
radian==0.6.13
|
| 281 |
+
rchitect==0.4.7
|
| 282 |
+
referencing @ file:///home/conda/feedstock_root/build_artifacts/referencing_1714619483868/work
|
| 283 |
+
regex @ file:///home/conda/feedstock_root/build_artifacts/regex_1730952243530/work
|
| 284 |
+
requests @ file:///home/conda/feedstock_root/build_artifacts/requests_1717057054362/work
|
| 285 |
+
rfc3339-validator @ file:///home/conda/feedstock_root/build_artifacts/rfc3339-validator_1638811747357/work
|
| 286 |
+
rfc3986-validator @ file:///home/conda/feedstock_root/build_artifacts/rfc3986-validator_1598024191506/work
|
| 287 |
+
rich @ file:///home/conda/feedstock_root/build_artifacts/rich_1733342254348/work/dist
|
| 288 |
+
rpds-py @ file:///home/conda/feedstock_root/build_artifacts/rpds-py_1725327050544/work
|
| 289 |
+
rsa @ file:///home/conda/feedstock_root/build_artifacts/rsa_1614171254180/work
|
| 290 |
+
ruamel.yaml @ file:///home/conda/feedstock_root/build_artifacts/ruamel.yaml_1728764986945/work
|
| 291 |
+
ruamel.yaml.clib @ file:///home/conda/feedstock_root/build_artifacts/ruamel.yaml.clib_1728724466132/work
|
| 292 |
+
ruff==0.9.6
|
| 293 |
+
s3transfer @ file:///home/conda/feedstock_root/build_artifacts/s3transfer_1737737761316/work
|
| 294 |
+
safehttpx==0.1.6
|
| 295 |
+
safetensors==0.5.2
|
| 296 |
+
scikit-image @ file:///home/conda/feedstock_root/build_artifacts/scikit-image_1729813832871/work/dist/scikit_image-0.24.0-cp312-cp312-linux_x86_64.whl#sha256=c02226adc1bbc3cff0787d5d2c2ef3ff92d050487b0086107059af19dc29b97d
|
| 297 |
+
scikit-learn @ file:///home/conda/feedstock_root/build_artifacts/scikit-learn_1726082671867/work/dist/scikit_learn-1.5.2-cp312-cp312-linux_x86_64.whl#sha256=7788ecb5f833925f336ead218eb6aff84070ef8d4c6457fe66e41ed104ed2600
|
| 298 |
+
scipy @ file:///home/conda/feedstock_root/build_artifacts/scipy-split_1706041474046/work/dist/scipy-1.12.0-cp312-cp312-linux_x86_64.whl#sha256=455585fb13f602615d4e6633d9becf631347243101f5b6983e5718c2dd364888
|
| 299 |
+
scs==3.2.7.post2
|
| 300 |
+
seaborn @ file:///home/conda/feedstock_root/build_artifacts/seaborn-split_1714494649443/work
|
| 301 |
+
selenium @ file:///home/conda/feedstock_root/build_artifacts/bld/rattler-build_selenium_1737667202/work
|
| 302 |
+
semantic-version==2.10.0
|
| 303 |
+
Send2Trash @ file:///home/conda/feedstock_root/build_artifacts/send2trash_1712584999685/work
|
| 304 |
+
setuptools==75.1.0
|
| 305 |
+
shap==0.43.0
|
| 306 |
+
shellingham @ file:///home/conda/feedstock_root/build_artifacts/shellingham_1733300899265/work
|
| 307 |
+
shiny==1.2.1
|
| 308 |
+
shinyswatch==0.8.0
|
| 309 |
+
shinywidgets==0.5.1
|
| 310 |
+
simpful @ file:///home/conda/feedstock_root/build_artifacts/simpful_1738578860095/work
|
| 311 |
+
simpy @ file:///home/conda/feedstock_root/build_artifacts/simpy_1735073919790/work
|
| 312 |
+
six @ file:///home/conda/feedstock_root/build_artifacts/six_1620240208055/work
|
| 313 |
+
slicer==0.0.7
|
| 314 |
+
smart_open @ file:///home/conda/feedstock_root/build_artifacts/smart_open_1734485076778/work/dist
|
| 315 |
+
smmap @ file:///home/conda/feedstock_root/build_artifacts/smmap_1634310307496/work
|
| 316 |
+
sniffio @ file:///home/conda/feedstock_root/build_artifacts/sniffio_1708952932303/work
|
| 317 |
+
sortedcontainers @ file:///home/conda/feedstock_root/build_artifacts/sortedcontainers_1621217038088/work
|
| 318 |
+
soupsieve @ file:///home/conda/feedstock_root/build_artifacts/soupsieve_1693929250441/work
|
| 319 |
+
spacy @ file:///home/conda/feedstock_root/build_artifacts/spacy_1732449874682/work
|
| 320 |
+
spacy-legacy @ file:///home/conda/feedstock_root/build_artifacts/spacy-legacy_1674550301837/work
|
| 321 |
+
spacy-loggers @ file:///home/conda/feedstock_root/build_artifacts/spacy-loggers_1694527114282/work
|
| 322 |
+
sparse==0.15.5
|
| 323 |
+
SQLAlchemy @ file:///home/conda/feedstock_root/build_artifacts/sqlalchemy_1729066352888/work
|
| 324 |
+
sqlglot==26.6.0
|
| 325 |
+
sqlparse @ file:///home/conda/feedstock_root/build_artifacts/sqlparse_1734007102193/work
|
| 326 |
+
srsly @ file:///home/conda/feedstock_root/build_artifacts/srsly_1737143183180/work
|
| 327 |
+
stack-data @ file:///home/conda/feedstock_root/build_artifacts/stack_data_1669632077133/work
|
| 328 |
+
starlette==0.45.3
|
| 329 |
+
statsmodels @ file:///home/conda/feedstock_root/build_artifacts/statsmodels_1727986688191/work
|
| 330 |
+
streamlit @ file:///home/conda/feedstock_root/build_artifacts/streamlit_1739846950093/work
|
| 331 |
+
sympy==1.13.1
|
| 332 |
+
tables @ file:///home/conda/feedstock_root/build_artifacts/pytables_1724161041994/work
|
| 333 |
+
tblib @ file:///home/conda/feedstock_root/build_artifacts/tblib_1702066284995/work
|
| 334 |
+
tenacity @ file:///home/conda/feedstock_root/build_artifacts/tenacity_1733649050774/work
|
| 335 |
+
terminado @ file:///home/conda/feedstock_root/build_artifacts/terminado_1710262609923/work
|
| 336 |
+
textblob==0.19.0
|
| 337 |
+
thinc @ file:///home/conda/feedstock_root/build_artifacts/thinc_1733202756977/work
|
| 338 |
+
threadpoolctl @ file:///home/conda/feedstock_root/build_artifacts/threadpoolctl_1714400101435/work
|
| 339 |
+
tifffile @ file:///home/conda/feedstock_root/build_artifacts/tifffile_1727250434425/work
|
| 340 |
+
tinycss2 @ file:///home/conda/feedstock_root/build_artifacts/tinycss2_1729802851396/work
|
| 341 |
+
tokenizers==0.21.0
|
| 342 |
+
toml @ file:///home/conda/feedstock_root/build_artifacts/toml_1734091811753/work
|
| 343 |
+
tomli @ file:///home/conda/feedstock_root/build_artifacts/tomli_1727974628237/work
|
| 344 |
+
tomlkit==0.13.2
|
| 345 |
+
toolz @ file:///home/conda/feedstock_root/build_artifacts/toolz_1728059506884/work
|
| 346 |
+
torch==2.6.0+cu126
|
| 347 |
+
torchaudio==2.6.0+cu126
|
| 348 |
+
torchvision==0.21.0+cu126
|
| 349 |
+
tornado @ file:///home/conda/feedstock_root/build_artifacts/tornado_1724956131631/work
|
| 350 |
+
tqdm @ file:///home/conda/feedstock_root/build_artifacts/tqdm_1722737464726/work
|
| 351 |
+
traitlets @ file:///home/conda/feedstock_root/build_artifacts/traitlets_1713535121073/work
|
| 352 |
+
transformers==4.49.0
|
| 353 |
+
trio @ file:///home/conda/feedstock_root/build_artifacts/trio_1739529641377/work
|
| 354 |
+
trio-websocket @ file:///home/conda/feedstock_root/build_artifacts/bld/rattler-build_trio-websocket_1739800863/work
|
| 355 |
+
triton==3.2.0
|
| 356 |
+
truststore @ file:///home/conda/feedstock_root/build_artifacts/truststore_1729762363021/work
|
| 357 |
+
typer==0.15.1
|
| 358 |
+
typer-slim==0.15.1
|
| 359 |
+
types-python-dateutil @ file:///home/conda/feedstock_root/build_artifacts/types-python-dateutil_1727940235703/work
|
| 360 |
+
typing-utils @ file:///home/conda/feedstock_root/build_artifacts/typing_utils_1622899189314/work
|
| 361 |
+
typing_extensions @ file:///home/conda/feedstock_root/build_artifacts/typing_extensions_1717802530399/work
|
| 362 |
+
tzdata @ file:///home/conda/feedstock_root/build_artifacts/python-tzdata_1727140567071/work
|
| 363 |
+
tzlocal @ file:///home/conda/feedstock_root/build_artifacts/tzlocal_1739471997586/work
|
| 364 |
+
uc-micro-py==1.0.3
|
| 365 |
+
unicodedata2 @ file:///home/conda/feedstock_root/build_artifacts/unicodedata2_1729704561929/work
|
| 366 |
+
uri-template @ file:///home/conda/feedstock_root/build_artifacts/uri-template_1688655812972/work/dist
|
| 367 |
+
urllib3 @ file:///home/conda/feedstock_root/build_artifacts/urllib3_1726496430923/work
|
| 368 |
+
uv==0.6.1
|
| 369 |
+
uvicorn==0.34.0
|
| 370 |
+
vaderSentiment==3.3.2
|
| 371 |
+
wasabi @ file:///home/conda/feedstock_root/build_artifacts/wasabi_1715409665169/work
|
| 372 |
+
watchdog @ file:///home/conda/feedstock_root/build_artifacts/watchdog_1730492891215/work
|
| 373 |
+
watchfiles==1.0.4
|
| 374 |
+
wcwidth @ file:///home/conda/feedstock_root/build_artifacts/wcwidth_1704731205417/work
|
| 375 |
+
weasel @ file:///home/conda/feedstock_root/build_artifacts/weasel_1734270156651/work
|
| 376 |
+
webcolors @ file:///home/conda/feedstock_root/build_artifacts/webcolors_1723294704277/work
|
| 377 |
+
webencodings @ file:///home/conda/feedstock_root/build_artifacts/webencodings_1694681268211/work
|
| 378 |
+
websocket-client @ file:///home/conda/feedstock_root/build_artifacts/websocket-client_1713923384721/work
|
| 379 |
+
websockets==14.2
|
| 380 |
+
wheel==0.44.0
|
| 381 |
+
widgetsnbextension @ file:///home/conda/feedstock_root/build_artifacts/widgetsnbextension_1724331337528/work
|
| 382 |
+
wrapt @ file:///home/conda/feedstock_root/build_artifacts/wrapt_1736869451908/work
|
| 383 |
+
wsproto @ file:///home/conda/feedstock_root/build_artifacts/wsproto_1733060193308/work
|
| 384 |
+
xgboost @ file:///home/conda/feedstock_root/build_artifacts/xgboost-split_1738880198843/work/python-package
|
| 385 |
+
xlrd @ file:///home/conda/feedstock_root/build_artifacts/xlrd_1610224409810/work
|
| 386 |
+
xlsx2csv==0.8.4
|
| 387 |
+
xyzservices @ file:///home/conda/feedstock_root/build_artifacts/xyzservices_1725366347586/work
|
| 388 |
+
zict @ file:///home/conda/feedstock_root/build_artifacts/zict_1681770155528/work
|
| 389 |
+
zipp @ file:///home/conda/feedstock_root/build_artifacts/zipp_1726248574750/work
|
| 390 |
+
zstandard==0.23.0
|