@@ -35,11 +35,16 @@ Labels are assigned based on [Sensible Github Labels](https://github.com/Releque
35
35
* links.json - JSON Hyper-Schema's Link Description Object meta-schema
36
36
* hyper-schema-output.json - The recommended output format for JSON Hyper-Schema links
37
37
38
- Install "xml2rfc" using "pip" (https://pypi.org/project/xml2rfc/ ) and type "make" at a shell to build the .txt and .html spec files:
38
+ The Makefile will create the necessary Python venv for you as part of the regular make target.
39
+
40
+ ` make clean ` will remove all output including the venv. To clean just the spec output and
41
+ keep the venv, use ` make spec-clean ` .
42
+
43
+ If you want to run ` xml2rfc ` manually after running make for the first time, you will
44
+ need to activate the virtual environment:
39
45
40
46
``` sh
41
- pip install --requirement requirements.txt
42
- make
47
+ source .venv/bin/activate
43
48
```
44
49
45
50
The version of "xml2rfc" that this project uses is updated by modifying ` requirements.in ` and running ` pip-compile requirements.in ` .
0 commit comments