We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6616555 commit 72339c4Copy full SHA for 72339c4
2 files changed
project.clj
@@ -4,7 +4,7 @@
4
:license {:name "EPL-2.0"
5
:url "https://www.eclipse.org/legal/epl-2.0/"}
6
:dependencies [[org.clojure/clojure "1.10.1"]
7
- [techascent/tech.datatype "4.51"]
+ [techascent/tech.datatype "4.53"]
8
[camel-snake-kebab "0.4.0"]]
9
:repl-options {:init-ns user}
10
:java-source-paths ["java"])
src/libpython_clj/py_modules/numpy.clj
@@ -1,7 +1,10 @@
1
(ns libpython-clj.py-modules.numpy
2
(:require [libpython-clj.python :as py]
3
[libpython-clj.export-module-symbols
- :refer [export-module-symbols]]))
+ :refer [export-module-symbols]])
+ (:refer-clojure :exclude [test take str sort short require repeat partition
+ mod min max long load int identity float empty double
+ conj char cast byte]))
(export-module-symbols "numpy")
0 commit comments