Skip to content

Commit 5ca757e

Browse files
committed
Switch to uv
1 parent 1b43141 commit 5ca757e

File tree

5 files changed

+245
-8
lines changed

5 files changed

+245
-8
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ __pycache__/
77
.idea/
88
.vscode/
99

10-
venv/
10+
.venv/

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

pyproject.toml

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
[project]
2+
name = "advent-of-code"
3+
version = "0.1.0"
4+
description = "Solutions for the Advent of Code programming challenges"
5+
readme = "README.md"
6+
requires-python = ">=3.13"
7+
dependencies = [
8+
"networkx>=3.4.2",
9+
"pillow>=11.0.0",
10+
"psutil>=6.1.0",
11+
"requests>=2.32.3",
12+
]
13+
14+
[dependency-groups]
15+
dev = [
16+
"pytest-xdist>=3.6.1",
17+
"pytest>=8.3.4",
18+
]
19+
120
[tool.pytest.ini_options]
221
pythonpath = [
322
"year2018",
@@ -7,7 +26,7 @@ pythonpath = [
726
addopts="-n auto"
827

928
[tool.ruff]
10-
target-version = "py312"
29+
target-version = "py313"
1130
line-length = 79
1231
preview = true
1332
output-format = "concise" # preview mode switches this to full

requirements.txt

-6
This file was deleted.

0 commit comments

Comments
 (0)