File tree Expand file tree Collapse file tree 3 files changed +9
-908
lines changed Expand file tree Collapse file tree 3 files changed +9
-908
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ __pycache__/
9
9
# Distribution / packaging
10
10
.Python
11
11
env /
12
+ ENV /
12
13
venv /
13
14
build /
14
15
develop-eggs /
@@ -80,13 +81,11 @@ celerybeat-schedule
80
81
# dotenv
81
82
.env
82
83
83
- # virtualenv
84
- venv /
85
- ENV /
86
- venv /
87
-
88
84
# Spyder project settings
89
85
.spyderproject
90
86
91
87
# Rope project settings
92
88
.ropeproject
89
+
90
+ # Generated SVG file
91
+ include /release-cycle.svg
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ html: ensure-venv versions
73
73
@echo " Build finished. The HTML pages are in $( BUILDDIR) /html."
74
74
75
75
.PHONY : dirhtml
76
- dirhtml : ensure-venv
76
+ dirhtml : ensure-venv versions
77
77
$(SPHINXBUILD ) -b dirhtml $(ALLSPHINXOPTS ) $(BUILDDIR ) /dirhtml
78
78
@echo
79
79
@echo " Build finished. The HTML pages are in $( BUILDDIR) /dirhtml."
@@ -189,14 +189,14 @@ serve:
189
189
" (see https://github.com/python/cpython/issues/80510)"
190
190
191
191
include/branches.csv : include/release-cycle.json
192
- $(PYTHON ) _tools/generate_release_cycle.py
192
+ $(VENVDIR ) /bin/python3 _tools/generate_release_cycle.py
193
193
194
194
include/end-of-life.csv : include/release-cycle.json
195
- $(PYTHON ) _tools/generate_release_cycle.py
195
+ $(VENVDIR ) /bin/python3 _tools/generate_release_cycle.py
196
196
197
197
include/release-cycle.svg : include/release-cycle.json
198
- $(PYTHON ) _tools/generate_release_cycle.py
198
+ $(VENVDIR ) /bin/python3 _tools/generate_release_cycle.py
199
199
200
200
.PHONY : versions
201
- versions : include/branches.csv include/end-of-life.csv include/release-cycle.svg
201
+ versions : venv include/branches.csv include/end-of-life.csv include/release-cycle.svg
202
202
@echo Release cycle data generated.
You can’t perform that action at this time.
0 commit comments