Skip to content

Commit 050ff3b

Browse files
authored
update, cleanup deps (#6)
1 parent 8aaed8e commit 050ff3b

File tree

3 files changed

+8
-18
lines changed

3 files changed

+8
-18
lines changed

deps.edn

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
{
2-
:paths ["src"]
3-
4-
:deps {
5-
org.clojure/clojure {:mvn/version "1.10.1"}
6-
seancorfield/clj-new {:mvn/version "0.8.6"}
7-
}
8-
}
1+
{:paths ["src"]
2+
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
3+
seancorfield/clj-new {:mvn/version "0.8.6"}}}

src/clj/new/libpython_clj/deps.edn

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
{
2-
:mvn/repos {"clojars" {:url "https://repo.clojars.org/"}
1+
{:mvn/repos {"clojars" {:url "https://repo.clojars.org/"}
32
"central" {:url "https://repo1.maven.org/maven2/"}}
4-
5-
:paths ["src" "resources"]
6-
7-
:deps {
8-
org.clojure/clojure {:mvn/version "1.10.1"}
9-
cnuernber/libpython-clj {:mvn/version "1.36"}
10-
}
11-
}
3+
:paths ["src" "resources"]
4+
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
5+
clj-python/libpython-clj {:mvn/version "1.46"}}}

src/clj/new/libpython_clj/python.clj

+1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@
1111
;; you bind to below. Make sure you do this before you call 'require-python'
1212
;; in any file.
1313

14+
;; (initialize-python! "/path/to/venv/bin/python")
1415
(initialize-python! "python3.7")

0 commit comments

Comments
 (0)