Skip to content

Commit 557a9db

Browse files
committed
use MicroMamba for CondaPkg
1 parent c3299f6 commit 557a9db

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Project.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ authors = ["Matt Johnson <mjohnson541@gmail.com>", "Hao-Wei Pang <hao4wei3pang2@
44
version = "1.0.0"
55

66
[deps]
7+
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
78
Calculus = "49dc2e85-a5d0-5ad3-a950-438e2897f1b9"
89
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
910
CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab"
10-
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
1111
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
1212
FastGaussQuadrature = "442a2c76-b920-505d-bb47-c5924d526838"
1313
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
@@ -17,6 +17,7 @@ IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
1717
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1818
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
1919
LsqFit = "2fda8390-95c7-5789-9bda-21331edee243"
20+
MicroMamba = "0b3b1443-0f03-428d-bdfb-f27f9c1191ea"
2021
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
2122
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
2223
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
@@ -41,18 +42,18 @@ Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
4142
YAML = "ddb6d928-2868-570f-bddf-ab3f9cf99eb6"
4243

4344
[compat]
45+
CSV = "0.10"
4446
Calculus = "0.4,0.5"
4547
Colors = "0.11,0.12"
4648
CondaPkg = "0.2"
47-
CSV = "0.10"
4849
DataFrames = "1"
49-
SciMLSensitivity = "^7"
5050
FastGaussQuadrature = "0.5"
5151
ForwardDiff = "0.10"
5252
Images = "0.24"
5353
IncompleteLU = "0.2"
5454
IterTools = "1.3"
5555
LsqFit = "0.12"
56+
MicroMamba = "0.1"
5657
ModelingToolkit = "8"
5758
OrdinaryDiffEq = "^6"
5859
Parameters = "0.12"
@@ -63,6 +64,7 @@ QuartzImageIO = "0.7"
6364
RecursiveArrayTools = "2.17"
6465
ReverseDiff = "1.9"
6566
SciMLBase = "^1"
67+
SciMLSensitivity = "^7"
6668
SmoothingSplines = "0.3"
6769
SpecialFunctions = "1"
6870
StaticArrays = "1"

src/ReactionMechanismSimulator.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
module ReactionMechanismSimulator
2+
ENV["JULIA_CONDAPKG_BACKEND"] = "MicroMamba"
23
using CondaPkg
34
using Logging
45
packages = keys(CondaPkg.current_packages())

src/rmstest.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import Logging
22
Logging.disable_logging(Logging.Warn)
3+
ENV["JULIA_CONDAPKG_BACKEND"] = "MicroMamba"
34
using CondaPkg
45

56
packages = keys(CondaPkg.current_packages())

0 commit comments

Comments
 (0)