Skip to content

Commit

Permalink
Updating changelog and removed useless atom from arrow.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnuernber committed Feb 18, 2025
1 parent 9d1134d commit 1cc7d1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog
# 7.043
* Legacy smile -- 2.6.0 -- support was removed. Support for later smile versions has moved to the scicloj system and operations like PCA are best implemented at this time using neanderthal.
* Legacy smile -- 2.6.0 -- support was removed. Support for later smile versions has moved to the [scicloj system](https://github.com/scicloj/scicloj.ml.smile) and operations like PCA are best implemented at this time using neanderthal.

# 7.042
* Upgrade hamf to get new api methods - lines and re-matches.
Expand Down
3 changes: 1 addition & 2 deletions src/tech/v3/libs/arrow.clj
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,6 @@ Dependent block frames are not supported!!")
;; Protocol extensions for arrow schema types
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(defonce type-atom (atom nil))

(extend-protocol clj-proto/Datafiable
ArrowType$Int
Expand Down Expand Up @@ -430,7 +429,7 @@ Dependent block frames are not supported!!")
:ordered? (.isOrdered this)
:index-type (datafy (.getIndexType this))})
ArrowType$List
(datafy [this] (swap! type-atom conj this)
(datafy [this]
{:datatype :list}))


Expand Down

0 comments on commit 1cc7d1d

Please sign in to comment.