Skip to content

Commit 9145876

Browse files
committed
version 1.0.1
version 1.0.1
1 parent a4883bb commit 9145876

File tree

8 files changed

+16
-15
lines changed

8 files changed

+16
-15
lines changed

dist/simoptlib-1.0.0.tar.gz

-115 KB
Binary file not shown.

dist/simoptlib-1.0.1.tar.gz

118 KB
Binary file not shown.

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages = ["simopt", "simopt.models", "simopt.solvers"]
77

88
[project]
99
name = "simoptlib"
10-
version = "1.0.0"
10+
version = "1.0.1"
1111
authors = [
1212
{ name="David Eckman", email="[email protected]" },
1313
{ name="Shane Henderson", email="[email protected]" },
@@ -23,12 +23,12 @@ classifiers = [
2323
"Operating System :: OS Independent",
2424
]
2525
dependencies = [
26-
"numpy",
27-
"scipy",
28-
"matplotlib >= 1.3",
29-
"pandas >= 1.4.3",
30-
"seaborn",
31-
"mrg32k3a"
26+
"numpy >= 1.21.6",
27+
"scipy >= 1.7.3",
28+
"matplotlib >= 3.2.2",
29+
"pandas >= 1.3.5",
30+
"seaborn >= 0.11.2",
31+
"mrg32k3a >= 1.0.0"
3232
]
3333

3434
[project.urls]

simopt/experiment_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ def log_experiment_results(self, print_solutions=True):
759759
new_path = self.file_name_path.replace("outputs", "logs") # Adjust file_path_name to correct folder.
760760
new_path2 = new_path.replace(".pickle", "") # Remove .pickle from .txt file name.
761761

762-
# Create directories if they do no exist.
762+
# Create directories if they do not exist.
763763
if "./experiments/logs" in new_path2 and not os.path.exists("./experiments/logs"):
764764
os.makedirs("./experiments", exist_ok=True)
765765
os.makedirs("./experiments/logs")

simoptlib.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: simoptlib
3-
Version: 1.0.0
3+
Version: 1.0.1
44
Summary: A testbed for simulation-optimization experiments.
55
Author-email: David Eckman <[email protected]>, Shane Henderson <[email protected]>, Sara Shashaani <[email protected]>
66
License: MIT License

simoptlib.egg-info/SOURCES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ simopt/data_farming_base.py
88
simopt/directory.py
99
simopt/experiment_base.py
1010
simopt/models/__init__.py
11+
simopt/models/amusementpark.py
1112
simopt/models/chessmm.py
1213
simopt/models/cntnv.py
1314
simopt/models/contam.py

simoptlib.egg-info/requires.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
numpy
2-
scipy
3-
matplotlib>=1.3
4-
pandas>=1.4.3
5-
seaborn
6-
mrg32k3a
1+
numpy>=1.21.6
2+
scipy>=1.7.3
3+
matplotlib>=3.2.2
4+
pandas>=1.3.5
5+
seaborn>=0.11.2
6+
mrg32k3a>=1.0.0

0 commit comments

Comments
 (0)