summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEric Engestrom <eric@engestrom.ch>2020-06-23 02:16:57 +0200
committerMarge Bot <eric+marge@anholt.net>2020-07-22 21:51:24 +0000
commitf5353e01f95fbc5bdbd770c4f9f1ea6cedc89e17 (patch)
tree921db0558e9098c3e894e57047a4b1a8cbd86c2b /bin
parent24e118f6957893d8f83b7d733fb2440cdbf99b4f (diff)
post_version.py: drop incorrect conf.py changes
This needs to be done in the mesa3d.org repo; see https://gitlab.freedesktop.org/mesa/mesa3d.org/-/merge_requests/19 Signed-off-by: Eric Engestrom <eric@engestrom.ch> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5928>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/post_version.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/bin/post_version.py b/bin/post_version.py
index 553a121714a..67eec783e49 100755
--- a/bin/post_version.py
+++ b/bin/post_version.py
@@ -26,33 +26,6 @@ import pathlib
import subprocess
-def update_homepage(version: str) -> None:
- p = pathlib.Path(__file__).parent.parent / 'docs' / 'conf.py'
-
- # Don't post release candidates to the homepage
- if 'rc' in version:
- return
-
- with open(p, 'r') as f:
- conf = f.readlines()
-
- new_conf = []
- for line in conf:
- if line.startswith("version = '") and line.endswith("'\n"):
- old_version = line.split("'")[1]
- # Avoid overwriting 20.1.0 when releasing 20.0.8
- # TODO: we might need more than that to handle 20.0.10
- if old_version < version:
- line = f"version = '{version}'\n"
- new_conf.append(line)
-
- with open(p, 'w') as f:
- for line in new_conf:
- f.write(line)
-
- subprocess.run(['git', 'add', p])
-
-
def update_release_notes(version: str) -> None:
p = pathlib.Path(__file__).parent.parent / 'docs' / 'relnotes.rst'
@@ -108,7 +81,6 @@ def main() -> None:
parser.add_argument('version', help="The released version.")
args = parser.parse_args()
- update_homepage(args.version)
update_calendar(args.version)
done = 'update calendar'