Skip to content

Commit

Permalink
Remove last trace of ZipFile
Browse files Browse the repository at this point in the history
  • Loading branch information
TimG1964 authored Oct 4, 2024
1 parent 281d5c1 commit 7343cab
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/XLSX.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,7 @@ import EzXML
import Tables
import Base.convert

# https://github.com/fhs/ZipFile.jl/issues/39
if !hasmethod(Base.bytesavailable, Tuple{ZipFile.ReadableFile})
Base.bytesavailable(f::ZipFile.ReadableFile) = f.uncompressedsize - f._pos
end

const SPREADSHEET_NAMESPACE_XPATH_ARG = [ "xpath" => "http://schemas.openxmlformats.org/spreadsheetml/2006/main" ]
const SPREADSHEET_NAMESPACE_XPATH_ARG = ["xpath" => "http://schemas.openxmlformats.org/spreadsheetml/2006/main"]
const EXCEL_MAX_COLS = 16_384 # total columns supported by Excel per sheet
const EXCEL_MAX_ROWS = 1_048_576 # total rows supported by Excel per sheet (including headers)

Expand Down

0 comments on commit 7343cab

Please sign in to comment.