Skip to content

Commit 762ea3b

Browse files
committed
Version Bump for testing
1 parent 419c77e commit 762ea3b

7 files changed

Lines changed: 17 additions & 15 deletions

File tree

.github/workflows/testing.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919
python-version: '3.10'
2020
- name: Install Dependencies
2121
run: |
22-
pip install --no-cache-dir --upgrade setuptools>=77.0
23-
pip install numpy Cython scipy optuna scikit-learn
22+
pip install --no-cache-dir --upgrade setuptools>=77.0
2423
pip install -r tests/requirements.txt
2524
- name: Install pymoo (DEBUG)
2625
run: |

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
blankjul [at] msu.edu.
63+
blankjul [at] outlook.com
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Contact
144144

145145
Feel free to contact me if you have any questions:
146146

147-
| `Julian Blank <http://julianblank.com>`_ (blankjul [at] msu.edu)
147+
| `Julian Blank <http://julianblank.com>`_ (blankjul [at] outlook.com)
148148
| Michigan State University
149149
| Computational Optimization and Innovation Laboratory (COIN)
150150
| East Lansing, MI 48824, USA

pymoo/core/algorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def __init__(self, algorithm, copy=True, **kwargs):
400400
if isinstance(algorithm, Meta):
401401
copy = False
402402

403-
# Initialize Meta (which initializes wrapt.ObjectProxy)
403+
# Initialize Meta
404404
super().__init__(algorithm, copy=copy)
405405

406406
# Pass any additional kwargs to the wrapped algorithm if needed

pymoo/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.1.6.dev1"
1+
__version__ = "0.6.1.6.dev2"

pyproject.toml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,11 @@ requires-python = ">= 3.10"
2626
dependencies = [
2727
"numpy>=1.19.3",
2828
"scipy>=1.1",
29-
"matplotlib>=3",
29+
"moocore>=0.1.7",
3030
"autograd>=1.4",
3131
"cma>=3.2.2",
32-
"moocore>=0.1.7",
3332
"alive_progress",
3433
"Deprecated",
35-
"wrapt>=1.14.0",
3634
]
3735

3836
[build-system]
@@ -59,19 +57,20 @@ dev = [
5957
"ipykernel",
6058
]
6159
visualization = [
62-
"matplotlib>=3.0",
60+
"matplotlib>=3",
6361
]
6462
parallelization = [
6563
"joblib",
6664
"dask[distributed]",
6765
"ray[default]",
6866
]
67+
others = [
68+
"optuna",
69+
]
6970
full = [
70-
"matplotlib>=3.0",
71-
"joblib",
72-
"dask[distributed]",
73-
"ray[default]",
74-
"optuna"
71+
"pymoo[visualization]",
72+
"pymoo[parallelization]",
73+
"pymoo[others]",
7574
]
7675

7776

tests/requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ jupytext
1111
pandas
1212
ipython
1313
ipykernel
14+
scipy
15+
optuna
16+
scikit-learn
17+
matplotlib

0 commit comments

Comments
 (0)