Skip to content

Commit d07a600

Browse files
committed
switch to using uv for package management
1 parent 979e803 commit d07a600

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,9 +379,13 @@ skip = [ # Don't check these files/folders
379379
"fixtures",
380380
"tests/fixtures/*",
381381
"eest_tests",
382+
"src/ethereum_spec_tools/evm_tools/t8n/*" # Temporary while being re-written
382383
]
383384
count = true # Display counts of errors
384385
check-hidden = false # Don't check hidden files (starting with .)
385386

386387
[tool.uv]
387388
required-version = ">=0.7.0"
389+
390+
[tool.uv.sources]
391+
"ethereum-spec-evm-resolver" = { git = "https://github.com/spencer-tb/ethereum-spec-evm-resolver", rev = "38d4d19d9bc9e2aea900aac5c4b511665c294322" }

tox.ini

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[tox]
2-
min_version = 2.0
2+
min_version = 4.0
3+
requires =
4+
tox-uv >=0.2.0
35
envlist = py3,pypy3,json_infra,static
46

7+
[testenv]
8+
package = uv
9+
uv_seed = false
10+
511
[testenv:static]
612
extras =
713
lint

0 commit comments

Comments
 (0)