Spaces:
Runtime error
Runtime error
Upload 5 files
Browse files- .gitattributes +2 -0
- KNN_age_model +3 -0
- KNN_gender_detection +3 -0
- app.py +62 -0
- requirements.txt +419 -0
- scaler +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
KNN_age_model filter=lfs diff=lfs merge=lfs -text
|
37 |
+
KNN_gender_detection filter=lfs diff=lfs merge=lfs -text
|
KNN_age_model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:60178b35d81a0bb4b4e6efbdb0647a512c7723cee5bc98969b837b3aad700e5a
|
3 |
+
size 15619746
|
KNN_gender_detection
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a5ab450de9fb1fc8e5729300a88653dc15692724f5c5b79e3220932951ff96a7
|
3 |
+
size 15619698
|
app.py
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import numpy as np
|
2 |
+
import pandas as pd
|
3 |
+
import matplotlib.pyplot as plt
|
4 |
+
import seaborn as sns
|
5 |
+
import os
|
6 |
+
import librosa
|
7 |
+
import joblib
|
8 |
+
import gradio as gr
|
9 |
+
|
10 |
+
## Voice Data Feature Extraction
|
11 |
+
|
12 |
+
### extract the features from the audio files using mfcc
|
13 |
+
def feature_extracter(fileName):
|
14 |
+
audio,sample_rate = librosa.load(fileName,sr=None, mono=True, dtype=np.float32,res_type='kaiser_fast')
|
15 |
+
mfcc_features = librosa.feature.mfcc(y=audio,sr=sample_rate,n_mfcc=30)
|
16 |
+
mfccs_scaled_features = np.mean(mfcc_features.T, axis=0)
|
17 |
+
|
18 |
+
return list(mfccs_scaled_features)
|
19 |
+
|
20 |
+
def prediction_age_gender(fileName):
|
21 |
+
|
22 |
+
col_name = ['Feature_1', 'Feature_2', 'Feature_3', 'Feature_4', 'Feature_5','Feature_6', 'Feature_7', 'Feature_8', 'Feature_9', 'Feature_10','Feature_11', 'Feature_12', 'Feature_13', 'Feature_14', 'Feature_15','Feature_16', 'Feature_17', 'Feature_18', 'Feature_19', 'Feature_20','Feature_21', 'Feature_22', 'Feature_23', 'Feature_24', 'Feature_25','Feature_26', 'Feature_27', 'Feature_28', 'Feature_29', 'Feature_30']
|
23 |
+
|
24 |
+
observation = [feature_extracter(fileName)]
|
25 |
+
observation = pd.DataFrame(observation, columns = col_name)
|
26 |
+
|
27 |
+
## scaling the observation
|
28 |
+
scaler = joblib.load('/content/scaler.pkl')
|
29 |
+
scaled_observation = scaler.transform(observation)
|
30 |
+
scaled_observation = pd.DataFrame(scaled_observation, columns = col_name)
|
31 |
+
|
32 |
+
### Gender classification model
|
33 |
+
gender_model = joblib.load('/content/KNN_gender_detection.pkl')
|
34 |
+
gender_predict = gender_model.predict_proba(scaled_observation)
|
35 |
+
## considering the labels 1 = male 0 = female
|
36 |
+
gender_dict = {}
|
37 |
+
gender_dict['Female'] = gender_predict[0][0]
|
38 |
+
gender_dict['Male'] = gender_predict[0][1]
|
39 |
+
|
40 |
+
### Age classification model
|
41 |
+
age_model = joblib.load('/content/KNN_age_model.pkl')
|
42 |
+
age_predict = age_model.predict_proba(scaled_observation)
|
43 |
+
age_dict = {}
|
44 |
+
age_dict['Eighties'] = age_predict[0][0]
|
45 |
+
age_dict['Fifties'] = age_predict[0][1]
|
46 |
+
age_dict['Fourties'] = age_predict[0][2]
|
47 |
+
age_dict['Seventies'] = age_predict[0][3]
|
48 |
+
age_dict['Sixties'] = age_predict[0][4]
|
49 |
+
age_dict['Teens'] = age_predict[0][5]
|
50 |
+
age_dict['Thirties'] = age_predict[0][6]
|
51 |
+
age_dict['Twenties'] = age_predict[0][7]
|
52 |
+
age_dict['Other'] = 1 - age_dict['Eighties'] - age_dict['Fifties'] - age_dict['Fourties'] - age_dict['Seventies'] - age_dict['Sixties'] - age_dict['Teens'] - age_dict['Thirties'] - age_dict['Twenties']
|
53 |
+
|
54 |
+
#final = "The person is a: " + gender + " of the age group: " + age
|
55 |
+
return gender_dict, age_dict
|
56 |
+
|
57 |
+
demo = gr.Interface(
|
58 |
+
prediction_age_gender,
|
59 |
+
inputs = [gr.Audio(sources=["microphone","upload"], type = 'filepath')],
|
60 |
+
outputs = [gr.Label(num_top_classes=2, label = 'Gender'), gr.Label(num_top_classes=9, label = 'Age Class')],
|
61 |
+
#gr.Text()
|
62 |
+
).launch(share=True, debug = True)
|
requirements.txt
ADDED
@@ -0,0 +1,419 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
absl-py==2.0.0
|
2 |
+
aiobotocore @ file:///C:/b/abs_1c1a_vjay2/croot/aiobotocore_1682537737724/work
|
3 |
+
aiofiles @ file:///C:/b/abs_9ex6mi6b56/croot/aiofiles_1683773603390/work
|
4 |
+
aiohttp @ file:///C:/b/abs_b78zt6vo64/croot/aiohttp_1694181126607/work
|
5 |
+
aioitertools @ file:///tmp/build/80754af9/aioitertools_1607109665762/work
|
6 |
+
aiosignal @ file:///tmp/build/80754af9/aiosignal_1637843061372/work
|
7 |
+
aiosqlite @ file:///C:/b/abs_9djc_0pyi3/croot/aiosqlite_1683773915844/work
|
8 |
+
alabaster @ file:///home/ktietz/src/ci/alabaster_1611921544520/work
|
9 |
+
altair==5.2.0
|
10 |
+
anaconda-anon-usage @ file:///C:/b/abs_f4tsjyl9va/croot/anaconda-anon-usage_1695310457827/work
|
11 |
+
anaconda-catalogs @ file:///C:/b/abs_8btyy0o8s8/croot/anaconda-catalogs_1685727315626/work
|
12 |
+
anaconda-client @ file:///C:/b/abs_80wttmgui4/croot/anaconda-client_1694625288614/work
|
13 |
+
anaconda-cloud-auth @ file:///C:/b/abs_5cjpnu6wjb/croot/anaconda-cloud-auth_1694462130037/work
|
14 |
+
anaconda-navigator @ file:///C:/b/abs_ab00e0_u7e/croot/anaconda-navigator_1695238210954/work
|
15 |
+
anaconda-project @ file:///C:/ci_311/anaconda-project_1676458365912/work
|
16 |
+
annotated-types==0.6.0
|
17 |
+
anyio @ file:///C:/ci_311/anyio_1676425491996/work/dist
|
18 |
+
appdirs==1.4.4
|
19 |
+
argon2-cffi @ file:///opt/conda/conda-bld/argon2-cffi_1645000214183/work
|
20 |
+
argon2-cffi-bindings @ file:///C:/ci_311/argon2-cffi-bindings_1676424443321/work
|
21 |
+
arrow @ file:///C:/ci_311/arrow_1678249767083/work
|
22 |
+
astroid @ file:///C:/ci_311/astroid_1678740610167/work
|
23 |
+
astropy @ file:///C:/ci_311_rebuilds/astropy_1678996071858/work
|
24 |
+
asttokens @ file:///opt/conda/conda-bld/asttokens_1646925590279/work
|
25 |
+
astunparse==1.6.3
|
26 |
+
async-timeout @ file:///C:/ci_311/async-timeout_1676431518331/work
|
27 |
+
atomicwrites==1.4.0
|
28 |
+
attrs @ file:///C:/ci_311/attrs_1676422272484/work
|
29 |
+
audioread==3.0.1
|
30 |
+
Automat @ file:///tmp/build/80754af9/automat_1600298431173/work
|
31 |
+
autopep8 @ file:///opt/conda/conda-bld/autopep8_1650463822033/work
|
32 |
+
Babel @ file:///C:/ci_311/babel_1676427169844/work
|
33 |
+
backcall @ file:///home/ktietz/src/ci/backcall_1611930011877/work
|
34 |
+
backports.functools-lru-cache @ file:///tmp/build/80754af9/backports.functools_lru_cache_1618170165463/work
|
35 |
+
backports.tempfile @ file:///home/linux1/recipes/ci/backports.tempfile_1610991236607/work
|
36 |
+
backports.weakref==1.0.post1
|
37 |
+
bcrypt @ file:///C:/ci_311/bcrypt_1676435170049/work
|
38 |
+
beautifulsoup4 @ file:///C:/b/abs_0agyz1wsr4/croot/beautifulsoup4-split_1681493048687/work
|
39 |
+
binaryornot @ file:///tmp/build/80754af9/binaryornot_1617751525010/work
|
40 |
+
black @ file:///C:/b/abs_620t6ndje8/croot/black_1680737261963/work
|
41 |
+
bleach @ file:///opt/conda/conda-bld/bleach_1641577558959/work
|
42 |
+
bokeh @ file:///C:/b/abs_e5qs_0dl2w/croot/bokeh_1690546119144/work
|
43 |
+
boltons @ file:///C:/ci_311/boltons_1677729932371/work
|
44 |
+
botocore @ file:///C:/b/abs_01gwdn34ju/croot/botocore_1682528022942/work
|
45 |
+
Bottleneck @ file:///C:/ci_311/bottleneck_1676500016583/work
|
46 |
+
brotlipy==0.7.0
|
47 |
+
cachetools==5.3.2
|
48 |
+
certifi @ file:///C:/b/abs_36eb5mzhph/croot/certifi_1690232276943/work/certifi
|
49 |
+
cffi @ file:///C:/ci_311/cffi_1676423759166/work
|
50 |
+
chardet @ file:///C:/ci_311/chardet_1676436134885/work
|
51 |
+
charset-normalizer @ file:///tmp/build/80754af9/charset-normalizer_1630003229654/work
|
52 |
+
click @ file:///C:/ci_311/click_1676433091657/work
|
53 |
+
cloudpickle @ file:///C:/b/abs_3796yxesic/croot/cloudpickle_1683040098851/work
|
54 |
+
clyent==1.2.2
|
55 |
+
colorama @ file:///C:/ci_311/colorama_1676422310965/work
|
56 |
+
colorcet @ file:///C:/ci_311/colorcet_1676440389947/work
|
57 |
+
comm @ file:///C:/ci_311/comm_1678376562840/work
|
58 |
+
conda @ file:///C:/b/abs_3eb7ewgq2c/croot/conda_1694545461647/work
|
59 |
+
conda-build @ file:///C:/b/abs_8di4gx5nj5/croot/conda-build_1692366837286/work
|
60 |
+
conda-content-trust @ file:///C:/b/abs_e3bcpyv7sw/croot/conda-content-trust_1693490654398/work
|
61 |
+
conda-libmamba-solver @ file:///C:/b/abs_016p0csqp7/croot/conda-libmamba-solver_1691418958509/work/src
|
62 |
+
conda-pack @ file:///tmp/build/80754af9/conda-pack_1611163042455/work
|
63 |
+
conda-package-handling @ file:///C:/b/abs_b9wp3lr1gn/croot/conda-package-handling_1691008700066/work
|
64 |
+
conda-repo-cli==1.0.75
|
65 |
+
conda-token @ file:///Users/paulyim/miniconda3/envs/c3i/conda-bld/conda-token_1662660369760/work
|
66 |
+
conda-verify==3.4.2
|
67 |
+
conda_index @ file:///C:/b/abs_50towt3zan/croot/conda-index_1695311135992/work
|
68 |
+
conda_package_streaming @ file:///C:/b/abs_6c28n38aaj/croot/conda-package-streaming_1690988019210/work
|
69 |
+
constantly==15.1.0
|
70 |
+
contourpy @ file:///C:/ci_311/contourpy_1676431756017/work
|
71 |
+
cookiecutter @ file:///opt/conda/conda-bld/cookiecutter_1649151442564/work
|
72 |
+
cryptography @ file:///C:/b/abs_f4do8t8jfs/croot/cryptography_1694444424531/work
|
73 |
+
cssselect==1.1.0
|
74 |
+
cycler @ file:///tmp/build/80754af9/cycler_1637851556182/work
|
75 |
+
cytoolz @ file:///C:/ci_311/cytoolz_1676436342770/work
|
76 |
+
daal4py==2023.1.1
|
77 |
+
dask @ file:///C:/b/abs_23lvfodys3/croot/dask-core_1686782960052/work
|
78 |
+
datasets @ file:///C:/b/abs_a3jy4vrfuo/croot/datasets_1684484478038/work
|
79 |
+
datashader @ file:///C:/b/abs_8323862uxi/croot/datashader_1692372298149/work
|
80 |
+
datashape==0.5.4
|
81 |
+
debugpy @ file:///C:/b/abs_c0y1fjipt2/croot/debugpy_1690906864587/work
|
82 |
+
decorator @ file:///opt/conda/conda-bld/decorator_1643638310831/work
|
83 |
+
defusedxml @ file:///tmp/build/80754af9/defusedxml_1615228127516/work
|
84 |
+
diff-match-patch @ file:///Users/ktietz/demo/mc3/conda-bld/diff-match-patch_1630511840874/work
|
85 |
+
dill @ file:///C:/ci_311/dill_1676433323862/work
|
86 |
+
distributed @ file:///C:/b/abs_7509xfv227/croot/distributed_1686866088894/work
|
87 |
+
docstring-to-markdown @ file:///C:/ci_311/docstring-to-markdown_1677742566583/work
|
88 |
+
docutils @ file:///C:/ci_311/docutils_1676428078664/work
|
89 |
+
entrypoints @ file:///C:/ci_311/entrypoints_1676423328987/work
|
90 |
+
et-xmlfile==1.1.0
|
91 |
+
executing @ file:///opt/conda/conda-bld/executing_1646925071911/work
|
92 |
+
fastapi==0.108.0
|
93 |
+
fastjsonschema @ file:///C:/ci_311/python-fastjsonschema_1679500568724/work
|
94 |
+
ffmpy==0.3.1
|
95 |
+
filelock @ file:///C:/ci_311/filelock_1676427284139/work
|
96 |
+
flake8 @ file:///C:/ci_311/flake8_1678376624746/work
|
97 |
+
Flask @ file:///C:/ci_311/flask_1676436667658/work
|
98 |
+
flatbuffers==23.5.26
|
99 |
+
fonttools==4.25.0
|
100 |
+
frozenlist @ file:///C:/ci_311/frozenlist_1676428131576/work
|
101 |
+
fsspec==2023.12.2
|
102 |
+
future @ file:///C:/ci_311_rebuilds/future_1678998246262/work
|
103 |
+
gast==0.5.4
|
104 |
+
gensim @ file:///C:/ci_311/gensim_1677743037820/work
|
105 |
+
glob2 @ file:///home/linux1/recipes/ci/glob2_1610991677669/work
|
106 |
+
google-auth==2.26.1
|
107 |
+
google-auth-oauthlib==1.2.0
|
108 |
+
google-pasta==0.2.0
|
109 |
+
gradio==4.13.0
|
110 |
+
gradio_client==0.8.0
|
111 |
+
greenlet @ file:///C:/ci_311/greenlet_1676436788118/work
|
112 |
+
grpcio==1.60.0
|
113 |
+
h11==0.14.0
|
114 |
+
h5py @ file:///C:/b/abs_17fav01gwy/croot/h5py_1691589733413/work
|
115 |
+
HeapDict @ file:///Users/ktietz/demo/mc3/conda-bld/heapdict_1630598515714/work
|
116 |
+
holoviews @ file:///C:/b/abs_fa7afixkhc/croot/holoviews_1693378101313/work
|
117 |
+
httpcore==1.0.2
|
118 |
+
httpx==0.26.0
|
119 |
+
huggingface-hub==0.20.2
|
120 |
+
hvplot @ file:///C:/b/abs_2b13wifauw/croot/hvplot_1685998632349/work
|
121 |
+
hyperlink @ file:///tmp/build/80754af9/hyperlink_1610130746837/work
|
122 |
+
idna @ file:///C:/ci_311/idna_1676424932545/work
|
123 |
+
imagecodecs @ file:///C:/b/abs_e2g5zbs1q0/croot/imagecodecs_1695065012000/work
|
124 |
+
imageio @ file:///C:/ci_311/imageio_1678373794394/work
|
125 |
+
imagesize @ file:///C:/ci_311/imagesize_1676431905616/work
|
126 |
+
imbalanced-learn @ file:///C:/b/abs_275a0acaq2/croot/imbalanced-learn_1685025644593/work
|
127 |
+
importlib-metadata @ file:///C:/b/abs_20ndzb2j6v/croot/importlib-metadata_1678997085534/work
|
128 |
+
importlib-resources==6.1.1
|
129 |
+
incremental @ file:///tmp/build/80754af9/incremental_1636629750599/work
|
130 |
+
inflection==0.5.1
|
131 |
+
iniconfig @ file:///home/linux1/recipes/ci/iniconfig_1610983019677/work
|
132 |
+
intake @ file:///C:/ci_311_rebuilds/intake_1678999914269/work
|
133 |
+
intervaltree @ file:///Users/ktietz/demo/mc3/conda-bld/intervaltree_1630511889664/work
|
134 |
+
ipykernel @ file:///C:/b/abs_07rkft_vaz/croot/ipykernel_1691121700587/work
|
135 |
+
ipython @ file:///C:/b/abs_e5729i179y/croot/ipython_1694181400005/work
|
136 |
+
ipython-genutils @ file:///tmp/build/80754af9/ipython_genutils_1606773439826/work
|
137 |
+
ipywidgets @ file:///C:/b/abs_5awapknmz_/croot/ipywidgets_1679394824767/work
|
138 |
+
isort @ file:///tmp/build/80754af9/isort_1628603791788/work
|
139 |
+
itemadapter @ file:///tmp/build/80754af9/itemadapter_1626442940632/work
|
140 |
+
itemloaders @ file:///opt/conda/conda-bld/itemloaders_1646805235997/work
|
141 |
+
itsdangerous @ file:///tmp/build/80754af9/itsdangerous_1621432558163/work
|
142 |
+
jaraco.classes @ file:///tmp/build/80754af9/jaraco.classes_1620983179379/work
|
143 |
+
jedi @ file:///C:/ci_311/jedi_1679427407646/work
|
144 |
+
jellyfish @ file:///C:/b/abs_50kgvtnrbj/croot/jellyfish_1695193564091/work
|
145 |
+
Jinja2 @ file:///C:/ci_311/jinja2_1676424968965/work
|
146 |
+
jinja2-time @ file:///opt/conda/conda-bld/jinja2-time_1649251842261/work
|
147 |
+
jmespath @ file:///Users/ktietz/demo/mc3/conda-bld/jmespath_1630583964805/work
|
148 |
+
joblib @ file:///C:/b/abs_1anqjntpan/croot/joblib_1685113317150/work
|
149 |
+
json5 @ file:///tmp/build/80754af9/json5_1624432770122/work
|
150 |
+
jsonpatch @ file:///tmp/build/80754af9/jsonpatch_1615747632069/work
|
151 |
+
jsonpointer==2.1
|
152 |
+
jsonschema @ file:///C:/b/abs_d40z05b6r1/croot/jsonschema_1678983446576/work
|
153 |
+
jupyter @ file:///C:/ci_311/jupyter_1678249952587/work
|
154 |
+
jupyter-console @ file:///C:/b/abs_82xaa6i2y4/croot/jupyter_console_1680000189372/work
|
155 |
+
jupyter-events @ file:///C:/b/abs_4cak_28ewz/croot/jupyter_events_1684268050893/work
|
156 |
+
jupyter-server @ file:///C:/ci_311/jupyter_server_1678228762759/work
|
157 |
+
jupyter-ydoc @ file:///C:/b/abs_e7m6nh5lao/croot/jupyter_ydoc_1683747253535/work
|
158 |
+
jupyter_client @ file:///C:/ci_311/jupyter_client_1676424009414/work
|
159 |
+
jupyter_core @ file:///C:/b/abs_9d0ttho3bs/croot/jupyter_core_1679906581955/work
|
160 |
+
jupyter_server_fileid @ file:///C:/b/abs_f1yjnmiq_6/croot/jupyter_server_fileid_1684273602142/work
|
161 |
+
jupyter_server_ydoc @ file:///C:/b/abs_8ai39bligw/croot/jupyter_server_ydoc_1686767445888/work
|
162 |
+
jupyterlab @ file:///C:/b/abs_c1msr8zz3y/croot/jupyterlab_1686179674844/work
|
163 |
+
jupyterlab-pygments @ file:///tmp/build/80754af9/jupyterlab_pygments_1601490720602/work
|
164 |
+
jupyterlab-widgets @ file:///C:/b/abs_38ad427jkz/croot/jupyterlab_widgets_1679055289211/work
|
165 |
+
jupyterlab_server @ file:///C:/b/abs_e0qqsihjvl/croot/jupyterlab_server_1680792526136/work
|
166 |
+
kaleido @ file:///C:/b/abs_60smvjz1os/croot/python-kaleido_1689927138239/work
|
167 |
+
keras==2.15.0
|
168 |
+
keyring @ file:///C:/b/abs_dbjc7g0dh2/croot/keyring_1678999228878/work
|
169 |
+
kiwisolver @ file:///C:/ci_311/kiwisolver_1676431979301/work
|
170 |
+
lazy-object-proxy @ file:///C:/ci_311/lazy-object-proxy_1676432050939/work
|
171 |
+
lazy_loader @ file:///C:/b/abs_c9jlw06oq1/croot/lazy_loader_1687266162676/work
|
172 |
+
libarchive-c @ file:///tmp/build/80754af9/python-libarchive-c_1617780486945/work
|
173 |
+
libclang==16.0.6
|
174 |
+
libmambapy @ file:///C:/b/abs_71g8gec0dd/croot/mamba-split_1694187821755/work/libmambapy
|
175 |
+
librosa==0.10.1
|
176 |
+
linkify-it-py @ file:///C:/ci_311/linkify-it-py_1676474436187/work
|
177 |
+
llvmlite @ file:///C:/b/abs_a8i9keuf6p/croot/llvmlite_1683555140340/work
|
178 |
+
lmdb @ file:///C:/b/abs_556ronuvb2/croot/python-lmdb_1682522366268/work
|
179 |
+
locket @ file:///C:/ci_311/locket_1676428325082/work
|
180 |
+
lxml @ file:///C:/b/abs_9e7tpg2vv9/croot/lxml_1695058219431/work
|
181 |
+
lz4 @ file:///C:/b/abs_064u6aszy3/croot/lz4_1686057967376/work
|
182 |
+
Markdown @ file:///C:/ci_311/markdown_1676437912393/work
|
183 |
+
markdown-it-py @ file:///C:/b/abs_a5bfngz6fu/croot/markdown-it-py_1684279915556/work
|
184 |
+
MarkupSafe @ file:///C:/ci_311/markupsafe_1676424152318/work
|
185 |
+
matplotlib @ file:///C:/b/abs_085jhivdha/croot/matplotlib-suite_1693812524572/work
|
186 |
+
matplotlib-inline @ file:///C:/ci_311/matplotlib-inline_1676425798036/work
|
187 |
+
mccabe @ file:///opt/conda/conda-bld/mccabe_1644221741721/work
|
188 |
+
mdit-py-plugins @ file:///C:/ci_311/mdit-py-plugins_1676481827414/work
|
189 |
+
mdurl @ file:///C:/ci_311/mdurl_1676442676678/work
|
190 |
+
menuinst @ file:///C:/ci_311/menuinst_1678730372782/work
|
191 |
+
mistune @ file:///C:/ci_311/mistune_1676425149302/work
|
192 |
+
mkl-fft @ file:///C:/b/abs_19i1y8ykas/croot/mkl_fft_1695058226480/work
|
193 |
+
mkl-random @ file:///C:/b/abs_edwkj1_o69/croot/mkl_random_1695059866750/work
|
194 |
+
mkl-service==2.4.0
|
195 |
+
ml-dtypes==0.2.0
|
196 |
+
more-itertools @ file:///tmp/build/80754af9/more-itertools_1637733554872/work
|
197 |
+
mpmath @ file:///C:/b/abs_7833jrbiox/croot/mpmath_1690848321154/work
|
198 |
+
msgpack @ file:///C:/ci_311/msgpack-python_1676427482892/work
|
199 |
+
multidict @ file:///C:/ci_311/multidict_1676428396308/work
|
200 |
+
multipledispatch @ file:///C:/ci_311/multipledispatch_1676442767760/work
|
201 |
+
multiprocess @ file:///C:/ci_311/multiprocess_1676442808395/work
|
202 |
+
munkres==1.1.4
|
203 |
+
mypy-extensions @ file:///C:/b/abs_8f7xiidjya/croot/mypy_extensions_1695131051147/work
|
204 |
+
navigator-updater @ file:///C:/b/abs_895otdwmo9/croot/navigator-updater_1695210220239/work
|
205 |
+
nbclassic @ file:///C:/b/abs_c8_rs7b3zw/croot/nbclassic_1681756186106/work
|
206 |
+
nbclient @ file:///C:/ci_311/nbclient_1676425195918/work
|
207 |
+
nbconvert @ file:///C:/ci_311/nbconvert_1676425836196/work
|
208 |
+
nbformat @ file:///C:/b/abs_5a2nea1iu2/croot/nbformat_1694616866197/work
|
209 |
+
nest-asyncio @ file:///C:/ci_311/nest-asyncio_1676423519896/work
|
210 |
+
networkx @ file:///C:/b/abs_e6gi1go5op/croot/networkx_1690562046966/work
|
211 |
+
nltk @ file:///C:/b/abs_a638z6l1z0/croot/nltk_1688114186909/work
|
212 |
+
notebook @ file:///C:/b/abs_e2qn6c85jb/croot/notebook_1690985290943/work
|
213 |
+
notebook_shim @ file:///C:/ci_311/notebook-shim_1678144850856/work
|
214 |
+
numba @ file:///C:/b/abs_00f2z7znbq/croot/numba_1690878309825/work
|
215 |
+
numexpr @ file:///C:/b/abs_afm0oewmmt/croot/numexpr_1683221839116/work
|
216 |
+
numpy @ file:///C:/Users/dev-admin/mkl/numpy_and_numpy_base_1682982345978/work
|
217 |
+
numpydoc @ file:///C:/ci_311/numpydoc_1676453412027/work
|
218 |
+
oauthlib==3.2.2
|
219 |
+
opencv-python==4.9.0.80
|
220 |
+
openpyxl==3.0.10
|
221 |
+
opt-einsum==3.3.0
|
222 |
+
orjson==3.9.10
|
223 |
+
packaging @ file:///C:/b/abs_28t5mcoltc/croot/packaging_1693575224052/work
|
224 |
+
pandas @ file:///C:/miniconda3/conda-bld/pandas_1692298018988/work
|
225 |
+
pandocfilters @ file:///opt/conda/conda-bld/pandocfilters_1643405455980/work
|
226 |
+
panel @ file:///C:/b/abs_a4rd7zrkc6/croot/panel_1695145945642/work
|
227 |
+
param @ file:///C:/b/abs_f5xzp6ism6/croot/param_1684915326009/work
|
228 |
+
paramiko @ file:///opt/conda/conda-bld/paramiko_1640109032755/work
|
229 |
+
parsel @ file:///C:/ci_311/parsel_1676443327188/work
|
230 |
+
parso @ file:///opt/conda/conda-bld/parso_1641458642106/work
|
231 |
+
partd @ file:///C:/b/abs_4e2m_ds81n/croot/partd_1693937921136/work
|
232 |
+
pathlib @ file:///Users/ktietz/demo/mc3/conda-bld/pathlib_1629713961906/work
|
233 |
+
pathspec @ file:///C:/ci_311/pathspec_1679427644142/work
|
234 |
+
patsy==0.5.3
|
235 |
+
pep8==1.7.1
|
236 |
+
pexpect @ file:///tmp/build/80754af9/pexpect_1605563209008/work
|
237 |
+
pickleshare @ file:///tmp/build/80754af9/pickleshare_1606932040724/work
|
238 |
+
Pillow @ file:///C:/b/abs_153xikw91n/croot/pillow_1695134603563/work
|
239 |
+
pkce @ file:///C:/b/abs_d0z4444tb0/croot/pkce_1690384879799/work
|
240 |
+
pkginfo @ file:///C:/b/abs_d18srtr68x/croot/pkginfo_1679431192239/work
|
241 |
+
platformdirs @ file:///C:/b/abs_b6z_yqw_ii/croot/platformdirs_1692205479426/work
|
242 |
+
plotly @ file:///C:/ci_311/plotly_1676443558683/work
|
243 |
+
pluggy @ file:///C:/ci_311/pluggy_1676422178143/work
|
244 |
+
ply==3.11
|
245 |
+
pooch==1.8.0
|
246 |
+
poyo @ file:///tmp/build/80754af9/poyo_1617751526755/work
|
247 |
+
prometheus-client @ file:///C:/ci_311/prometheus_client_1679591942558/work
|
248 |
+
prompt-toolkit @ file:///C:/ci_311/prompt-toolkit_1676425940920/work
|
249 |
+
Protego @ file:///tmp/build/80754af9/protego_1598657180827/work
|
250 |
+
protobuf==4.23.4
|
251 |
+
psutil @ file:///C:/ci_311_rebuilds/psutil_1679005906571/work
|
252 |
+
ptyprocess @ file:///tmp/build/80754af9/ptyprocess_1609355006118/work/dist/ptyprocess-0.7.0-py2.py3-none-any.whl
|
253 |
+
pure-eval @ file:///opt/conda/conda-bld/pure_eval_1646925070566/work
|
254 |
+
py-cpuinfo @ file:///Users/ktietz/demo/mc3/conda-bld/py-cpuinfo_1629480366017/work
|
255 |
+
pyarrow==11.0.0
|
256 |
+
pyasn1 @ file:///Users/ktietz/demo/mc3/conda-bld/pyasn1_1629708007385/work
|
257 |
+
pyasn1-modules==0.2.8
|
258 |
+
pycodestyle @ file:///C:/ci_311/pycodestyle_1678376707834/work
|
259 |
+
pycosat @ file:///C:/ci_311/pycosat_1676438455539/work
|
260 |
+
pycparser @ file:///tmp/build/80754af9/pycparser_1636541352034/work
|
261 |
+
pyct @ file:///C:/ci_311/pyct_1676438538057/work
|
262 |
+
pycurl==7.45.2
|
263 |
+
pydantic==2.5.3
|
264 |
+
pydantic_core==2.14.6
|
265 |
+
PyDispatcher==2.0.5
|
266 |
+
pydocstyle @ file:///C:/ci_311/pydocstyle_1678402028085/work
|
267 |
+
pydub==0.25.1
|
268 |
+
pyerfa @ file:///C:/ci_311/pyerfa_1676503994641/work
|
269 |
+
pyflakes @ file:///C:/ci_311/pyflakes_1678402101687/work
|
270 |
+
Pygments @ file:///C:/b/abs_fay9dpq4n_/croot/pygments_1684279990574/work
|
271 |
+
PyJWT @ file:///C:/ci_311/pyjwt_1676438890509/work
|
272 |
+
pylint @ file:///C:/ci_311/pylint_1678740302984/work
|
273 |
+
pylint-venv @ file:///C:/ci_311/pylint-venv_1678402170638/work
|
274 |
+
pyls-spyder==0.4.0
|
275 |
+
PyNaCl @ file:///C:/ci_311/pynacl_1676445861112/work
|
276 |
+
pyodbc @ file:///C:/ci_311/pyodbc_1676489976744/work
|
277 |
+
pyOpenSSL @ file:///C:/b/abs_08f38zyck4/croot/pyopenssl_1690225407403/work
|
278 |
+
pyparsing @ file:///C:/ci_311/pyparsing_1678502182533/work
|
279 |
+
PyQt5==5.15.7
|
280 |
+
PyQt5-sip @ file:///C:/ci_311/pyqt-split_1676428895938/work/pyqt_sip
|
281 |
+
PyQtWebEngine==5.15.4
|
282 |
+
pyrsistent @ file:///C:/ci_311/pyrsistent_1676422695500/work
|
283 |
+
PySocks @ file:///C:/ci_311/pysocks_1676425991111/work
|
284 |
+
pytest @ file:///C:/b/abs_48heoo_k8y/croot/pytest_1690475385915/work
|
285 |
+
python-dateutil @ file:///tmp/build/80754af9/python-dateutil_1626374649649/work
|
286 |
+
python-dotenv @ file:///C:/ci_311/python-dotenv_1676455170580/work
|
287 |
+
python-json-logger @ file:///C:/b/abs_cblnsm6puj/croot/python-json-logger_1683824130469/work
|
288 |
+
python-lsp-black @ file:///C:/ci_311/python-lsp-black_1678721855627/work
|
289 |
+
python-lsp-jsonrpc==1.0.0
|
290 |
+
python-lsp-server @ file:///C:/b/abs_catecj7fv1/croot/python-lsp-server_1681930405912/work
|
291 |
+
python-multipart==0.0.6
|
292 |
+
python-slugify @ file:///tmp/build/80754af9/python-slugify_1620405669636/work
|
293 |
+
python-snappy @ file:///C:/ci_311/python-snappy_1676446060182/work
|
294 |
+
pytoolconfig @ file:///C:/ci_311/pytoolconfig_1678402262175/work
|
295 |
+
pytz @ file:///C:/b/abs_19q3ljkez4/croot/pytz_1695131651401/work
|
296 |
+
pyviz-comms @ file:///C:/b/abs_6cq38vhwa5/croot/pyviz_comms_1685030740344/work
|
297 |
+
PyWavelets @ file:///C:/ci_311/pywavelets_1676504105729/work
|
298 |
+
pywin32==305.1
|
299 |
+
pywin32-ctypes @ file:///C:/ci_311/pywin32-ctypes_1676427747089/work
|
300 |
+
pywinpty @ file:///C:/ci_311/pywinpty_1677707791185/work/target/wheels/pywinpty-2.0.10-cp311-none-win_amd64.whl
|
301 |
+
PyYAML @ file:///C:/ci_311/pyyaml_1676432488822/work
|
302 |
+
pyzmq @ file:///C:/ci_311/pyzmq_1676423601304/work
|
303 |
+
QDarkStyle @ file:///tmp/build/80754af9/qdarkstyle_1617386714626/work
|
304 |
+
qstylizer @ file:///C:/ci_311/qstylizer_1678502012152/work/dist/qstylizer-0.2.2-py2.py3-none-any.whl
|
305 |
+
QtAwesome @ file:///C:/ci_311/qtawesome_1678402331535/work
|
306 |
+
qtconsole @ file:///C:/b/abs_eb4u9jg07y/croot/qtconsole_1681402843494/work
|
307 |
+
QtPy @ file:///C:/ci_311/qtpy_1676432558504/work
|
308 |
+
queuelib==1.5.0
|
309 |
+
regex @ file:///C:/ci_311_rebuilds/regex_1679006156792/work
|
310 |
+
requests @ file:///C:/b/abs_316c2inijk/croot/requests_1690400295842/work
|
311 |
+
requests-file @ file:///Users/ktietz/demo/mc3/conda-bld/requests-file_1629455781986/work
|
312 |
+
requests-oauthlib==1.3.1
|
313 |
+
requests-toolbelt @ file:///C:/b/abs_2fsmts66wp/croot/requests-toolbelt_1690874051210/work
|
314 |
+
responses @ file:///tmp/build/80754af9/responses_1619800270522/work
|
315 |
+
rfc3339-validator @ file:///C:/b/abs_ddfmseb_vm/croot/rfc3339-validator_1683077054906/work
|
316 |
+
rfc3986-validator @ file:///C:/b/abs_6e9azihr8o/croot/rfc3986-validator_1683059049737/work
|
317 |
+
rich==13.7.0
|
318 |
+
rope @ file:///C:/ci_311/rope_1678402524346/work
|
319 |
+
rsa==4.9
|
320 |
+
Rtree @ file:///C:/ci_311/rtree_1676455758391/work
|
321 |
+
ruamel-yaml-conda @ file:///C:/ci_311/ruamel_yaml_1676455799258/work
|
322 |
+
ruamel.yaml @ file:///C:/ci_311/ruamel.yaml_1676439214109/work
|
323 |
+
s3fs @ file:///C:/b/abs_adfhcfx438/croot/s3fs_1682551489845/work
|
324 |
+
safetensors @ file:///C:/b/abs_a8nnkwknpv/croot/safetensors_1692949064285/work
|
325 |
+
scikit-image @ file:///C:/b/abs_2075zg1pia/croot/scikit-image_1682528361447/work
|
326 |
+
scikit-learn @ file:///C:/b/abs_55olq_4gzc/croot/scikit-learn_1690978955123/work
|
327 |
+
scikit-learn-intelex==20230426.121932
|
328 |
+
scipy==1.11.1
|
329 |
+
Scrapy @ file:///C:/ci_311/scrapy_1678502587780/work
|
330 |
+
seaborn @ file:///C:/ci_311/seaborn_1676446547861/work
|
331 |
+
semantic-version==2.10.0
|
332 |
+
Send2Trash @ file:///tmp/build/80754af9/send2trash_1632406701022/work
|
333 |
+
service-identity @ file:///Users/ktietz/demo/mc3/conda-bld/service_identity_1629460757137/work
|
334 |
+
shellingham==1.5.4
|
335 |
+
sip @ file:///C:/ci_311/sip_1676427825172/work
|
336 |
+
six @ file:///tmp/build/80754af9/six_1644875935023/work
|
337 |
+
skops==0.9.0
|
338 |
+
smart-open @ file:///C:/ci_311/smart_open_1676439339434/work
|
339 |
+
sniffio @ file:///C:/ci_311/sniffio_1676425339093/work
|
340 |
+
snowballstemmer @ file:///tmp/build/80754af9/snowballstemmer_1637937080595/work
|
341 |
+
sortedcontainers @ file:///tmp/build/80754af9/sortedcontainers_1623949099177/work
|
342 |
+
soundfile==0.12.1
|
343 |
+
soupsieve @ file:///C:/b/abs_a989exj3q6/croot/soupsieve_1680518492466/work
|
344 |
+
soxr==0.3.7
|
345 |
+
Sphinx @ file:///C:/ci_311/sphinx_1676434546244/work
|
346 |
+
sphinxcontrib-applehelp @ file:///home/ktietz/src/ci/sphinxcontrib-applehelp_1611920841464/work
|
347 |
+
sphinxcontrib-devhelp @ file:///home/ktietz/src/ci/sphinxcontrib-devhelp_1611920923094/work
|
348 |
+
sphinxcontrib-htmlhelp @ file:///tmp/build/80754af9/sphinxcontrib-htmlhelp_1623945626792/work
|
349 |
+
sphinxcontrib-jsmath @ file:///home/ktietz/src/ci/sphinxcontrib-jsmath_1611920942228/work
|
350 |
+
sphinxcontrib-qthelp @ file:///home/ktietz/src/ci/sphinxcontrib-qthelp_1611921055322/work
|
351 |
+
sphinxcontrib-serializinghtml @ file:///tmp/build/80754af9/sphinxcontrib-serializinghtml_1624451540180/work
|
352 |
+
spyder @ file:///C:/b/abs_e99kl7d8t0/croot/spyder_1681934304813/work
|
353 |
+
spyder-kernels @ file:///C:/b/abs_e788a8_4y9/croot/spyder-kernels_1691599588437/work
|
354 |
+
SQLAlchemy @ file:///C:/ci_311/sqlalchemy_1676446707912/work
|
355 |
+
stack-data @ file:///opt/conda/conda-bld/stack_data_1646927590127/work
|
356 |
+
starlette==0.32.0.post1
|
357 |
+
statsmodels @ file:///C:/b/abs_7bth810rna/croot/statsmodels_1689937298619/work
|
358 |
+
sympy @ file:///C:/ci_311_rebuilds/sympy_1679009400182/work
|
359 |
+
tables @ file:///C:/b/abs_0626auep9v/croot/pytables_1691623892917/work
|
360 |
+
tabulate @ file:///C:/ci_311/tabulate_1676494503192/work
|
361 |
+
TBB==0.2
|
362 |
+
tblib @ file:///Users/ktietz/demo/mc3/conda-bld/tblib_1629402031467/work
|
363 |
+
tenacity @ file:///C:/b/abs_ddkoa9nju6/croot/tenacity_1682972298929/work
|
364 |
+
tensorboard==2.15.1
|
365 |
+
tensorboard-data-server==0.7.2
|
366 |
+
tensorflow==2.15.0
|
367 |
+
tensorflow-estimator==2.15.0
|
368 |
+
tensorflow-intel==2.15.0
|
369 |
+
tensorflow-io-gcs-filesystem==0.31.0
|
370 |
+
termcolor==2.4.0
|
371 |
+
terminado @ file:///C:/ci_311/terminado_1678228513830/work
|
372 |
+
text-unidecode @ file:///Users/ktietz/demo/mc3/conda-bld/text-unidecode_1629401354553/work
|
373 |
+
textdistance @ file:///tmp/build/80754af9/textdistance_1612461398012/work
|
374 |
+
threadpoolctl @ file:///Users/ktietz/demo/mc3/conda-bld/threadpoolctl_1629802263681/work
|
375 |
+
three-merge @ file:///tmp/build/80754af9/three-merge_1607553261110/work
|
376 |
+
tifffile @ file:///C:/b/abs_45o5chuqwt/croot/tifffile_1695107511025/work
|
377 |
+
tinycss2 @ file:///C:/ci_311/tinycss2_1676425376744/work
|
378 |
+
tldextract @ file:///opt/conda/conda-bld/tldextract_1646638314385/work
|
379 |
+
tokenizers @ file:///C:/b/abs_e34f9vyhry/croot/tokenizers_1687191954304/work
|
380 |
+
toml @ file:///tmp/build/80754af9/toml_1616166611790/work
|
381 |
+
tomlkit==0.12.0
|
382 |
+
toolz @ file:///C:/ci_311/toolz_1676431406517/work
|
383 |
+
tornado @ file:///C:/b/abs_61jhmrrua1/croot/tornado_1690848767317/work
|
384 |
+
tqdm @ file:///C:/b/abs_f76j9hg7pv/croot/tqdm_1679561871187/work
|
385 |
+
traitlets @ file:///C:/ci_311/traitlets_1676423290727/work
|
386 |
+
transformers @ file:///C:/b/abs_375hgbdwge/croot/transformers_1693308365188/work
|
387 |
+
Twisted @ file:///C:/b/abs_f1pc_rieoy/croot/twisted_1683796899561/work
|
388 |
+
twisted-iocpsupport @ file:///C:/ci_311/twisted-iocpsupport_1676447612160/work
|
389 |
+
typer==0.9.0
|
390 |
+
typing_extensions==4.9.0
|
391 |
+
tzdata @ file:///croot/python-tzdata_1690578112552/work
|
392 |
+
uc-micro-py @ file:///C:/ci_311/uc-micro-py_1676457695423/work
|
393 |
+
ujson @ file:///C:/ci_311/ujson_1676434714224/work
|
394 |
+
Unidecode @ file:///tmp/build/80754af9/unidecode_1614712377438/work
|
395 |
+
urllib3 @ file:///C:/b/abs_889_loyqv4/croot/urllib3_1686163174463/work
|
396 |
+
uvicorn==0.25.0
|
397 |
+
w3lib @ file:///Users/ktietz/demo/mc3/conda-bld/w3lib_1629359764703/work
|
398 |
+
watchdog @ file:///C:/ci_311/watchdog_1676457923624/work
|
399 |
+
wcwidth @ file:///Users/ktietz/demo/mc3/conda-bld/wcwidth_1629357192024/work
|
400 |
+
webencodings==0.5.1
|
401 |
+
websocket-client @ file:///C:/ci_311/websocket-client_1676426063281/work
|
402 |
+
websockets==11.0.3
|
403 |
+
Werkzeug @ file:///C:/b/abs_8578rs2ra_/croot/werkzeug_1679489759009/work
|
404 |
+
whatthepatch @ file:///C:/ci_311/whatthepatch_1678402578113/work
|
405 |
+
widgetsnbextension @ file:///C:/b/abs_882k4_4kdf/croot/widgetsnbextension_1679313880295/work
|
406 |
+
win-inet-pton @ file:///C:/ci_311/win_inet_pton_1676425458225/work
|
407 |
+
wrapt @ file:///C:/ci_311/wrapt_1676432805090/work
|
408 |
+
xarray @ file:///C:/b/abs_5bkjiynp4e/croot/xarray_1689041498548/work
|
409 |
+
xlwings @ file:///C:/ci_311_rebuilds/xlwings_1679013429160/work
|
410 |
+
xxhash @ file:///C:/ci_311/python-xxhash_1676446168786/work
|
411 |
+
xyzservices @ file:///C:/ci_311/xyzservices_1676434829315/work
|
412 |
+
y-py @ file:///C:/b/abs_b7f5go6r0j/croot/y-py_1683662173571/work
|
413 |
+
yapf @ file:///tmp/build/80754af9/yapf_1615749224965/work
|
414 |
+
yarl @ file:///C:/ci_311/yarl_1676432870023/work
|
415 |
+
ypy-websocket @ file:///C:/b/abs_4e65ywlnv8/croot/ypy-websocket_1684172103529/work
|
416 |
+
zict @ file:///C:/b/abs_fc7elavmem/croot/zict_1682698759288/work
|
417 |
+
zipp @ file:///C:/ci_311/zipp_1676426100491/work
|
418 |
+
zope.interface @ file:///C:/ci_311/zope.interface_1676439868776/work
|
419 |
+
zstandard==0.19.0
|
scaler
ADDED
Binary file (13.7 kB). View file
|
|