Skip to content

Commit

Permalink
new version, adapting to tech.ml.dataset "5.00-beta-28"
Browse files Browse the repository at this point in the history
  • Loading branch information
daslu committed Feb 19, 2021
1 parent 5ecc134 commit 0d2420e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## [1.0.0-BETA18 - 2020-02-19]
- updating the tech.ml.dataset dependency to version "5.00-beta-28" (minor adaptation was required)

## [1.0.0-BETA17 - 2020-01-27]
- updating the tech.ml.dataset dependency to version "5.00-beta-27"

Expand Down
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{:deps
{org.clojure/clojure {:mvn/version "1.10.1"},
org.clojure/tools.logging {:mvn/version "1.1.0"},
techascent/tech.ml.dataset {:mvn/version "5.00-beta-27"},
techascent/tech.ml.dataset {:mvn/version "5.00-beta-28"},
org.rosuda.REngine/Rserve {:mvn/version "1.8.1"},
hiccup {:mvn/version "1.0.5"}
org.clojure/core.async {:mvn/version "1.3.610"}}}
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject scicloj/clojisr "1.0.0-BETA17"
(defproject scicloj/clojisr "1.0.0-BETA18"
:description "Clojure <-> R interop"
:url "https://github.com/scicloj/clojisr"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/clojisr/v1/impl/clj_to_java.clj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
[(col/column-name col)
(if (col/missing col)
(seq col)
(dtype/->array-copy col))])
(dtype/->array col))])

(defn ->data-frame
[session dataset]
Expand Down

0 comments on commit 0d2420e

Please sign in to comment.