Spaces:
Sleeping
Sleeping
remove references to conda
Browse files- .gitignore +2 -1
- README.md +2 -3
- environment.yml +0 -8
- pyproject.toml +1 -1
.gitignore
CHANGED
@@ -6,5 +6,6 @@
|
|
6 |
.ipynb_checkpoints
|
7 |
.pytest_cache
|
8 |
|
9 |
-
|
10 |
|
|
|
|
6 |
.ipynb_checkpoints
|
7 |
.pytest_cache
|
8 |
|
9 |
+
*egg-info
|
10 |
|
11 |
+
__pycache__
|
README.md
CHANGED
@@ -3,11 +3,10 @@
|
|
3 |
|
4 |
## Setup
|
5 |
|
6 |
-
This project uses `
|
7 |
|
8 |
```shell
|
9 |
-
|
10 |
-
conda activate rubiktensor
|
11 |
uv sync
|
12 |
uv run pre-commit install
|
13 |
```
|
|
|
3 |
|
4 |
## Setup
|
5 |
|
6 |
+
This project uses `uv` as environment & dependency manager, and `python 3.12` as core interpreter. Install the project with
|
7 |
|
8 |
```shell
|
9 |
+
uv venv
|
|
|
10 |
uv sync
|
11 |
uv run pre-commit install
|
12 |
```
|
environment.yml
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
name: rubiktensor
|
2 |
-
channels:
|
3 |
-
- defaults
|
4 |
-
dependencies:
|
5 |
-
- python=3.12.11
|
6 |
-
- pip=25.1
|
7 |
-
- pip:
|
8 |
-
- uv
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pyproject.toml
CHANGED
@@ -17,4 +17,4 @@ dev = [
|
|
17 |
]
|
18 |
|
19 |
[tool.uv]
|
20 |
-
package = true
|
|
|
17 |
]
|
18 |
|
19 |
[tool.uv]
|
20 |
+
package = true
|