You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-9
Original file line number
Diff line number
Diff line change
@@ -35,19 +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
-
The Makefile can create the necessary Python virtual environment for you:
38
+
The Makefile will create the necessary Python venv for you as part of the regular make target.
39
39
40
-
```sh
41
-
make venv
42
-
source .venv/bin/activate
43
-
make
44
-
```
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`.
45
42
46
-
Or you can manually install "xml2rfc" using "pip" (https://pypi.org/project/xml2rfc/) and type "make" at a shell to build the .txt and .html spec files:
43
+
If you want to run `xml2rfc` manually after running make for the first time, you will
44
+
need to activate the virtual environment:
47
45
48
46
```sh
49
-
pip install --requirement requirements.txt
50
-
make
47
+
source .venv/bin/activate
51
48
```
52
49
53
50
The version of "xml2rfc" that this project uses is updated by modifying `requirements.in` and running `pip-compile requirements.in`.
0 commit comments