[libcxx-commits] [libcxx] [libc++] Add a script to synchronize status-tracking CSVs with Github issues (PR #101704)
via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Aug 4 15:19:18 PDT 2024
================
@@ -0,0 +1,229 @@
+#!/usr/bin/env python3
+
+from typing import List, Dict, Tuple, Optional
+import csv
+import itertools
+import json
+import os
+import pathlib
+import re
+import subprocess
+
+# Number of the 'Libc++ Standards Conformance' project on Github
+LIBCXX_CONFORMANCE_PROJECT = '31'
----------------
h-vetinari wrote:
Project numbers are as stable as issue numbers, so that shouldn't be an issue IMO.
https://github.com/llvm/llvm-project/pull/101704
More information about the libcxx-commits
mailing list