Skip to content

Commit fa18aed

Browse files
committed
feat: add pandas support
1 parent e352639 commit fa18aed

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

lang/list.go

+10
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ var (
2323
blockCommentEnd: `"""`,
2424
},
2525
}
26+
pandasGen = baseLang{
27+
name: "Pandas",
28+
slug: "pythondata",
29+
shortName: "py",
30+
extension: ".py",
31+
lineComment: "#",
32+
blockCommentStart: `"""`,
33+
blockCommentEnd: `"""`,
34+
}
2635
cppGen = cpp{
2736
baseLang{
2837
name: "C++",
@@ -212,6 +221,7 @@ var (
212221
SupportedLangs = []Lang{
213222
golangGen,
214223
python3Gen,
224+
pandasGen,
215225
cppGen,
216226
rustGen,
217227
javaGen,

scripts/update_readme.go

+3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ func updateSupportMatrix(readme []byte) []byte {
5858
w := table.NewWriter()
5959
w.AppendHeader(table.Row{"", "Generation", "Local testing"})
6060
for _, l := range lang.SupportedLangs {
61+
if l.Name() == "Pandas" {
62+
continue
63+
}
6164
localTest := ":white_check_mark:"
6265
if _, ok := l.(lang.LocalTestable); !ok {
6366
localTest = "Not yet"

0 commit comments

Comments
 (0)