File tree 1 file changed +6
-9
lines changed
doc/development_guide/contributor_guide
1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -47,22 +47,19 @@ commands:
47
47
48
48
.. code :: bash
49
49
50
- # Note: Atheris doesn't support Python 3.12+ yet:
51
- # https://github.com/google/atheris/issues/82
52
50
mkdir fuzzing-repro
53
51
cd fuzzing-repro
54
52
55
- pyenv install --skip-existing 3.11
56
- pyenv shell 3.11
57
-
58
- python -m venv .venv-fuzzing-repro
59
- source .venv-fuzzing-repro/bin/activate
53
+ # Note: Atheris doesn't support Python 3.12+ yet:
54
+ # https://github.com/google/atheris/issues/82
55
+ uv venv --python 3.11
56
+ source .venv/bin/activate
60
57
61
58
git clone https://github.com/pylint-dev/astroid.git
62
59
cd astroid
63
60
64
- pip install atheris
65
- pip install --editable .
61
+ uv pip install atheris==2.3.0
62
+ uv pip install --editable .
66
63
67
64
# Save the minimized testcase as `minimized.py` in the astroid directory
68
65
You can’t perform that action at this time.
0 commit comments