Spaces:
Runtime error
Runtime error
pablovela5620
commited on
Commit
•
8ce468d
1
Parent(s):
403073d
initial commit
Browse files- .gitattributes +3 -0
- .gitignore +3 -0
- Dockerfile +26 -0
- pixi.lock +354 -0
- pixi.toml +15 -0
.gitattributes
CHANGED
@@ -33,3 +33,6 @@ 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 |
+
# GitHub syntax highlighting
|
37 |
+
pixi.lock linguist-language=YAML
|
38 |
+
|
.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
# pixi environments
|
2 |
+
.pixi
|
3 |
+
|
Dockerfile
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
2 |
+
# you will also find guides on how best to write your Dockerfile
|
3 |
+
|
4 |
+
FROM python:3.9
|
5 |
+
|
6 |
+
WORKDIR /code
|
7 |
+
|
8 |
+
COPY ./pixi.toml /code/pixi.toml
|
9 |
+
|
10 |
+
# Set up a new user named "user" with user ID 1000
|
11 |
+
RUN useradd -m -u 1000 user
|
12 |
+
|
13 |
+
# Switch to the "user" user
|
14 |
+
USER user
|
15 |
+
|
16 |
+
# Set home to the user's home directory
|
17 |
+
ENV HOME=/home/user \
|
18 |
+
PATH=/home/user/.local/bin:$PATH
|
19 |
+
|
20 |
+
# Set the working directory to the user's home directory
|
21 |
+
WORKDIR $HOME/app
|
22 |
+
|
23 |
+
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
24 |
+
COPY --chown=user . $HOME/app
|
25 |
+
|
26 |
+
CMD ["pixi", "run", "hi"]
|
pixi.lock
ADDED
@@ -0,0 +1,354 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: 4
|
2 |
+
environments:
|
3 |
+
default:
|
4 |
+
channels:
|
5 |
+
- url: https://conda.anaconda.org/conda-forge/
|
6 |
+
packages:
|
7 |
+
linux-64:
|
8 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
|
9 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
|
10 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda
|
11 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda
|
12 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
|
13 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
|
14 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
|
15 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda
|
16 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda
|
17 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
|
18 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.1-h2797004_0.conda
|
19 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
|
20 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
|
21 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda
|
22 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-h59595ed_2.conda
|
23 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_0.conda
|
24 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda
|
25 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
|
26 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
|
27 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
|
28 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda
|
29 |
+
packages:
|
30 |
+
- kind: conda
|
31 |
+
name: _libgcc_mutex
|
32 |
+
version: '0.1'
|
33 |
+
build: conda_forge
|
34 |
+
subdir: linux-64
|
35 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
|
36 |
+
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
|
37 |
+
md5: d7c89558ba9fa0495403155b64376d81
|
38 |
+
license: None
|
39 |
+
size: 2562
|
40 |
+
timestamp: 1578324546067
|
41 |
+
- kind: conda
|
42 |
+
name: _openmp_mutex
|
43 |
+
version: '4.5'
|
44 |
+
build: 2_gnu
|
45 |
+
build_number: 16
|
46 |
+
subdir: linux-64
|
47 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
|
48 |
+
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
|
49 |
+
md5: 73aaf86a425cc6e73fcf236a5a46396d
|
50 |
+
depends:
|
51 |
+
- _libgcc_mutex 0.1 conda_forge
|
52 |
+
- libgomp >=7.5.0
|
53 |
+
constrains:
|
54 |
+
- openmp_impl 9999
|
55 |
+
license: BSD-3-Clause
|
56 |
+
license_family: BSD
|
57 |
+
size: 23621
|
58 |
+
timestamp: 1650670423406
|
59 |
+
- kind: conda
|
60 |
+
name: bzip2
|
61 |
+
version: 1.0.8
|
62 |
+
build: hd590300_5
|
63 |
+
build_number: 5
|
64 |
+
subdir: linux-64
|
65 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda
|
66 |
+
sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8
|
67 |
+
md5: 69b8b6202a07720f448be700e300ccf4
|
68 |
+
depends:
|
69 |
+
- libgcc-ng >=12
|
70 |
+
license: bzip2-1.0.6
|
71 |
+
license_family: BSD
|
72 |
+
size: 254228
|
73 |
+
timestamp: 1699279927352
|
74 |
+
- kind: conda
|
75 |
+
name: ca-certificates
|
76 |
+
version: 2024.2.2
|
77 |
+
build: hbcca054_0
|
78 |
+
subdir: linux-64
|
79 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda
|
80 |
+
sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb
|
81 |
+
md5: 2f4327a1cbe7f022401b236e915a5fef
|
82 |
+
license: ISC
|
83 |
+
size: 155432
|
84 |
+
timestamp: 1706843687645
|
85 |
+
- kind: conda
|
86 |
+
name: ld_impl_linux-64
|
87 |
+
version: '2.40'
|
88 |
+
build: h41732ed_0
|
89 |
+
subdir: linux-64
|
90 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
|
91 |
+
sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd
|
92 |
+
md5: 7aca3059a1729aa76c597603f10b0dd3
|
93 |
+
constrains:
|
94 |
+
- binutils_impl_linux-64 2.40
|
95 |
+
license: GPL-3.0-only
|
96 |
+
license_family: GPL
|
97 |
+
size: 704696
|
98 |
+
timestamp: 1674833944779
|
99 |
+
- kind: conda
|
100 |
+
name: libexpat
|
101 |
+
version: 2.5.0
|
102 |
+
build: hcb278e6_1
|
103 |
+
build_number: 1
|
104 |
+
subdir: linux-64
|
105 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
|
106 |
+
sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3
|
107 |
+
md5: 6305a3dd2752c76335295da4e581f2fd
|
108 |
+
depends:
|
109 |
+
- libgcc-ng >=12
|
110 |
+
constrains:
|
111 |
+
- expat 2.5.0.*
|
112 |
+
license: MIT
|
113 |
+
license_family: MIT
|
114 |
+
size: 77980
|
115 |
+
timestamp: 1680190528313
|
116 |
+
- kind: conda
|
117 |
+
name: libffi
|
118 |
+
version: 3.4.2
|
119 |
+
build: h7f98852_5
|
120 |
+
build_number: 5
|
121 |
+
subdir: linux-64
|
122 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
|
123 |
+
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
|
124 |
+
md5: d645c6d2ac96843a2bfaccd2d62b3ac3
|
125 |
+
depends:
|
126 |
+
- libgcc-ng >=9.4.0
|
127 |
+
license: MIT
|
128 |
+
license_family: MIT
|
129 |
+
size: 58292
|
130 |
+
timestamp: 1636488182923
|
131 |
+
- kind: conda
|
132 |
+
name: libgcc-ng
|
133 |
+
version: 13.2.0
|
134 |
+
build: h807b86a_5
|
135 |
+
build_number: 5
|
136 |
+
subdir: linux-64
|
137 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda
|
138 |
+
sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4
|
139 |
+
md5: d4ff227c46917d3b4565302a2bbb276b
|
140 |
+
depends:
|
141 |
+
- _libgcc_mutex 0.1 conda_forge
|
142 |
+
- _openmp_mutex >=4.5
|
143 |
+
constrains:
|
144 |
+
- libgomp 13.2.0 h807b86a_5
|
145 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
146 |
+
license_family: GPL
|
147 |
+
size: 770506
|
148 |
+
timestamp: 1706819192021
|
149 |
+
- kind: conda
|
150 |
+
name: libgomp
|
151 |
+
version: 13.2.0
|
152 |
+
build: h807b86a_5
|
153 |
+
build_number: 5
|
154 |
+
subdir: linux-64
|
155 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda
|
156 |
+
sha256: 0d3d4b1b0134283ea02d58e8eb5accf3655464cf7159abf098cc694002f8d34e
|
157 |
+
md5: d211c42b9ce49aee3734fdc828731689
|
158 |
+
depends:
|
159 |
+
- _libgcc_mutex 0.1 conda_forge
|
160 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
161 |
+
license_family: GPL
|
162 |
+
size: 419751
|
163 |
+
timestamp: 1706819107383
|
164 |
+
- kind: conda
|
165 |
+
name: libnsl
|
166 |
+
version: 2.0.1
|
167 |
+
build: hd590300_0
|
168 |
+
subdir: linux-64
|
169 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
|
170 |
+
sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6
|
171 |
+
md5: 30fd6e37fe21f86f4bd26d6ee73eeec7
|
172 |
+
depends:
|
173 |
+
- libgcc-ng >=12
|
174 |
+
license: LGPL-2.1-only
|
175 |
+
license_family: GPL
|
176 |
+
size: 33408
|
177 |
+
timestamp: 1697359010159
|
178 |
+
- kind: conda
|
179 |
+
name: libsqlite
|
180 |
+
version: 3.45.1
|
181 |
+
build: h2797004_0
|
182 |
+
subdir: linux-64
|
183 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.1-h2797004_0.conda
|
184 |
+
sha256: 1b379d1c652b25d0540251d422ef767472e768fd36b77261045e97f9ba6d3faa
|
185 |
+
md5: fc4ccadfbf6d4784de88c41704792562
|
186 |
+
depends:
|
187 |
+
- libgcc-ng >=12
|
188 |
+
- libzlib >=1.2.13,<1.3.0a0
|
189 |
+
license: Unlicense
|
190 |
+
size: 859346
|
191 |
+
timestamp: 1707495156652
|
192 |
+
- kind: conda
|
193 |
+
name: libuuid
|
194 |
+
version: 2.38.1
|
195 |
+
build: h0b41bf4_0
|
196 |
+
subdir: linux-64
|
197 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
|
198 |
+
sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
|
199 |
+
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
|
200 |
+
depends:
|
201 |
+
- libgcc-ng >=12
|
202 |
+
license: BSD-3-Clause
|
203 |
+
license_family: BSD
|
204 |
+
size: 33601
|
205 |
+
timestamp: 1680112270483
|
206 |
+
- kind: conda
|
207 |
+
name: libxcrypt
|
208 |
+
version: 4.4.36
|
209 |
+
build: hd590300_1
|
210 |
+
build_number: 1
|
211 |
+
subdir: linux-64
|
212 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
|
213 |
+
sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
|
214 |
+
md5: 5aa797f8787fe7a17d1b0821485b5adc
|
215 |
+
depends:
|
216 |
+
- libgcc-ng >=12
|
217 |
+
license: LGPL-2.1-or-later
|
218 |
+
size: 100393
|
219 |
+
timestamp: 1702724383534
|
220 |
+
- kind: conda
|
221 |
+
name: libzlib
|
222 |
+
version: 1.2.13
|
223 |
+
build: hd590300_5
|
224 |
+
build_number: 5
|
225 |
+
subdir: linux-64
|
226 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda
|
227 |
+
sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4
|
228 |
+
md5: f36c115f1ee199da648e0597ec2047ad
|
229 |
+
depends:
|
230 |
+
- libgcc-ng >=12
|
231 |
+
constrains:
|
232 |
+
- zlib 1.2.13 *_5
|
233 |
+
license: Zlib
|
234 |
+
license_family: Other
|
235 |
+
size: 61588
|
236 |
+
timestamp: 1686575217516
|
237 |
+
- kind: conda
|
238 |
+
name: ncurses
|
239 |
+
version: '6.4'
|
240 |
+
build: h59595ed_2
|
241 |
+
build_number: 2
|
242 |
+
subdir: linux-64
|
243 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-h59595ed_2.conda
|
244 |
+
sha256: 91cc03f14caf96243cead96c76fe91ab5925a695d892e83285461fb927dece5e
|
245 |
+
md5: 7dbaa197d7ba6032caf7ae7f32c1efa0
|
246 |
+
depends:
|
247 |
+
- libgcc-ng >=12
|
248 |
+
license: X11 AND BSD-3-Clause
|
249 |
+
size: 884434
|
250 |
+
timestamp: 1698751260967
|
251 |
+
- kind: conda
|
252 |
+
name: openssl
|
253 |
+
version: 3.2.1
|
254 |
+
build: hd590300_0
|
255 |
+
subdir: linux-64
|
256 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_0.conda
|
257 |
+
sha256: c02c12bdb898daacf7eb3d09859f93ea8f285fd1a6132ff6ff0493ab52c7fe57
|
258 |
+
md5: 51a753e64a3027bd7e23a189b1f6e91e
|
259 |
+
depends:
|
260 |
+
- ca-certificates
|
261 |
+
- libgcc-ng >=12
|
262 |
+
constrains:
|
263 |
+
- pyopenssl >=22.1
|
264 |
+
license: Apache-2.0
|
265 |
+
license_family: Apache
|
266 |
+
size: 2863069
|
267 |
+
timestamp: 1706635653339
|
268 |
+
- kind: conda
|
269 |
+
name: python
|
270 |
+
version: 3.11.8
|
271 |
+
build: hab00c5b_0_cpython
|
272 |
+
subdir: linux-64
|
273 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda
|
274 |
+
sha256: f33559d7127b6a892854bc3b2b4be1406c3be9537d658cb13edae57c8c0b5a11
|
275 |
+
md5: 2fdc314ee058eda0114738a9309d3683
|
276 |
+
depends:
|
277 |
+
- bzip2 >=1.0.8,<2.0a0
|
278 |
+
- ld_impl_linux-64 >=2.36.1
|
279 |
+
- libexpat >=2.5.0,<3.0a0
|
280 |
+
- libffi >=3.4,<4.0a0
|
281 |
+
- libgcc-ng >=12
|
282 |
+
- libnsl >=2.0.1,<2.1.0a0
|
283 |
+
- libsqlite >=3.45.1,<4.0a0
|
284 |
+
- libuuid >=2.38.1,<3.0a0
|
285 |
+
- libxcrypt >=4.4.36
|
286 |
+
- libzlib >=1.2.13,<1.3.0a0
|
287 |
+
- ncurses >=6.4,<7.0a0
|
288 |
+
- openssl >=3.2.1,<4.0a0
|
289 |
+
- readline >=8.2,<9.0a0
|
290 |
+
- tk >=8.6.13,<8.7.0a0
|
291 |
+
- tzdata
|
292 |
+
- xz >=5.2.6,<6.0a0
|
293 |
+
constrains:
|
294 |
+
- python_abi 3.11.* *_cp311
|
295 |
+
license: Python-2.0
|
296 |
+
size: 30754113
|
297 |
+
timestamp: 1708118457486
|
298 |
+
- kind: conda
|
299 |
+
name: readline
|
300 |
+
version: '8.2'
|
301 |
+
build: h8228510_1
|
302 |
+
build_number: 1
|
303 |
+
subdir: linux-64
|
304 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
|
305 |
+
sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7
|
306 |
+
md5: 47d31b792659ce70f470b5c82fdfb7a4
|
307 |
+
depends:
|
308 |
+
- libgcc-ng >=12
|
309 |
+
- ncurses >=6.3,<7.0a0
|
310 |
+
license: GPL-3.0-only
|
311 |
+
license_family: GPL
|
312 |
+
size: 281456
|
313 |
+
timestamp: 1679532220005
|
314 |
+
- kind: conda
|
315 |
+
name: tk
|
316 |
+
version: 8.6.13
|
317 |
+
build: noxft_h4845f30_101
|
318 |
+
build_number: 101
|
319 |
+
subdir: linux-64
|
320 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
|
321 |
+
sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e
|
322 |
+
md5: d453b98d9c83e71da0741bb0ff4d76bc
|
323 |
+
depends:
|
324 |
+
- libgcc-ng >=12
|
325 |
+
- libzlib >=1.2.13,<1.3.0a0
|
326 |
+
license: TCL
|
327 |
+
license_family: BSD
|
328 |
+
size: 3318875
|
329 |
+
timestamp: 1699202167581
|
330 |
+
- kind: conda
|
331 |
+
name: tzdata
|
332 |
+
version: 2024a
|
333 |
+
build: h0c530f3_0
|
334 |
+
subdir: noarch
|
335 |
+
noarch: generic
|
336 |
+
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda
|
337 |
+
sha256: 7b2b69c54ec62a243eb6fba2391b5e443421608c3ae5dbff938ad33ca8db5122
|
338 |
+
md5: 161081fc7cec0bfda0d86d7cb595f8d8
|
339 |
+
license: LicenseRef-Public-Domain
|
340 |
+
size: 119815
|
341 |
+
timestamp: 1706886945727
|
342 |
+
- kind: conda
|
343 |
+
name: xz
|
344 |
+
version: 5.2.6
|
345 |
+
build: h166bdaf_0
|
346 |
+
subdir: linux-64
|
347 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
|
348 |
+
sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
|
349 |
+
md5: 2161070d867d1b1204ea749c8eec4ef0
|
350 |
+
depends:
|
351 |
+
- libgcc-ng >=12
|
352 |
+
license: LGPL-2.1 and GPL-2.0
|
353 |
+
size: 418368
|
354 |
+
timestamp: 1660346797927
|
pixi.toml
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "DSINE-space"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add a short description here"
|
5 |
+
authors = ["pablovela5620 <pablovela5620@gmail.com>"]
|
6 |
+
channels = ["conda-forge"]
|
7 |
+
platforms = ["linux-64"]
|
8 |
+
|
9 |
+
[tasks]
|
10 |
+
hi="""
|
11 |
+
python -c "print('hi')"
|
12 |
+
"""
|
13 |
+
|
14 |
+
[dependencies]
|
15 |
+
python = "3.11.*"
|