[libcxx-commits] [libcxx] [libc++] Add a script to synchronize status-tracking CSVs with Github issues (PR #101704)
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Aug 4 06:58:11 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'
----------------
mordante wrote:
This sounds quite fragile, is there another way to implement this based on the labels in GitHub?
https://github.com/llvm/llvm-project/pull/101704
More information about the libcxx-commits
mailing list