Skip to content

Commit

Permalink
Removed fastexcel as a required dependency as poi is more robust and …
Browse files Browse the repository at this point in the history
…issue #283
  • Loading branch information
cnuernber committed Feb 4, 2022
1 parent f5fbeb6 commit b1cb8d0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## 6.054-SNAPSHOT
* Removed fastexcel as an automatic dependency due to [ussue 283](https://github.com/techascent/tech.ml.dataset/issues/283). The api documentation now
indicates the known working fastexcel version.

## 6.053
* Java API, Documentation and Sample.
* Non-backward-compatible Fixes to rolling API's `:comp-fn` optional argument - the
Expand Down
3 changes: 2 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
[org.apache.poi/poi-ooxml "5.1.0"
:exclusions [commons-codec]]
[org.dhatim/fastexcel-reader "0.12.8"
:exclusions [org.apache.poi/poi-ooxml]]
:exclusions [org.apache.poi/poi-ooxml]
:scope "provided"]
[com.github.haifengl/smile-core "2.6.0"
:exclusions [org.slf4j/slf4j-api]]
[com.github.haifengl/smile-io "2.6.0"
Expand Down
10 changes: 9 additions & 1 deletion src/tech/v3/libs/fastexcel.clj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,15 @@
If you have an xlsx file that contains multiple sheets and you want a dataset
out of each sheet you have to use `workbook->datasets` as opposed to the higher level
`->dataset` operator."
`->dataset` operator.
This dependency has a known conflict with cognitec's aws library - see [issue 283](https://github.com/techascent/tech.ml.dataset/issues/283).
Required Dependencies:
```clojure
[org.dhatim/fastexcel-reader \"0.12.8\" :exclusions [org.apache.poi/poi-ooxml]]
```"
(:require [tech.v3.io :as io]
[tech.v3.datatype.protocols :as dtype-proto]
[tech.v3.datatype :as dtype]
Expand Down

0 comments on commit b1cb8d0

Please sign in to comment.