Skip to content

Commit 981f60c

Browse files
Use updated Parsers.jl stripquoted (#69)
1 parent b611fa2 commit 981f60c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PowerFlowData"
22
uuid = "dd99e9e3-7471-40fc-b48d-a10501125371"
33
authors = "Nick Robinson <npr251@gmail.com> and contributors"
4-
version = "1.3.0"
4+
version = "1.3.1"
55

66
[deps]
77
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
@@ -14,7 +14,7 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
1414
DataFrames = "1"
1515
DocStringExtensions = "0.8.5"
1616
InlineStrings = "1.1.2"
17-
Parsers = "2.2.1"
17+
Parsers = "2.3"
1818
PrettyTables = "1"
1919
Tables = "1"
2020
julia = "1"

src/parsing.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const OPTIONS = Parsers.Options(
88
openquotechar='\'',
99
closequotechar='\'',
1010
delim=',',
11-
stripwhitespace=true,
11+
stripquoted=true,
1212
)
1313

1414
getbytes(source::Vector{UInt8}) = source, 1, length(source)

0 commit comments

Comments
 (0)