Skip to content

Commit 1a5b10f

Browse files
READMEs: document python versioning (#2089)
Ref: #2087 Signed-off-by: David Korczynski <[email protected]>
1 parent 3cd0ad8 commit 1a5b10f

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ On this page you'll see a list of all the projects that are currently analysed b
2626

2727

2828
## Docs and demonstrations
29+
30+
Fuzz Introspector is build, tested and run with Python3.11. Other versions may
31+
work, but they are not officially supported.
32+
2933
The main Fuzz Introspector documentation is available here: https://fuzz-introspector.readthedocs.io This documentation includes user guides, OSS-Fuzz instructions, tutorials, development docs and more.
3034
Additionally, there is more information:
3135
- [Video demonstration](https://www.youtube.com/watch?v=cheo-liJhuE)

tools/web-fuzzing-introspection/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ available through various APIs.
1111

1212
## Launching a local version
1313

14+
This webapp currently is build, tested and run with Python 3.11. Other versions
15+
may work but are not officially supported.
16+
1417
To launch the web app locally you need to:
1518

1619
1. Create a virtual environment and install dependencies.
@@ -27,9 +30,9 @@ git clone https://github.com/ossf/fuzz-introspector
2730
cd tools/web-fuzzing-introspection
2831

2932
# Create virtual environment
30-
python3 -m virtualenv .venv
33+
python3.11 -m virtualenv .venv
3134
. .venv/bin/activate
32-
python3 -m pip install -r ./requirements.txt
35+
python3.11 -m pip install -r ./requirements.txt
3336

3437

3538
# Create (small) DB

0 commit comments

Comments
 (0)