Skip to content

Commit

Permalink
Fixes #238
Browse files Browse the repository at this point in the history
  • Loading branch information
cnuernber committed May 5, 2021
1 parent 318162b commit 7fce058
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 6.00-beta-8
* Fix for [issue 238](https://github.com/techascent/tech.ml.dataset/issues/238)

## 6.00-beta-7
* Final upgrade for geni benchmark and moved a utility function to make
it more generally accessible.
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[com.univocity/univocity-parsers "2.9.0"]
[org.apache.poi/poi-ooxml "4.1.2"
:exclusions [commons-codec]]
[org.dhatim/fastexcel-reader "0.10.12"
[org.dhatim/fastexcel-reader "0.12.8"
:exclusions [org.apache.poi/poi-ooxml]]
[com.github.haifengl/smile-core "2.6.0"
:exclusions [org.slf4j/slf4j-api]]
Expand Down
4 changes: 3 additions & 1 deletion src/tech/v3/libs/fastexcel.clj
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@
(test [this val] (not= val nil))))
(.iterator))]
(reify java.util.Iterator
(hasNext [this] (.hasNext iter))
;;In some cases hasNext throws.
(hasNext [this] (try (.hasNext iter)
(catch Exception e false)))
(next [this] (wrap-cell (.next iter))))))))

(defn- wrap-sheet
Expand Down

0 comments on commit 7fce058

Please sign in to comment.