-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from aarongarrett/development
Pull from dev into master
- Loading branch information
Showing
26 changed files
with
871 additions
and
1,232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,3 +60,7 @@ target/ | |
|
||
# pyenv python configuration file | ||
.python-version | ||
|
||
inspyred*csv | ||
|
||
.mypy_cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
|
||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
|
||
python: | ||
install: | ||
- requirements: requirements_dev.txt |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
This package allows the creation of bio-inspired computational intelligence algorithms. | ||
.. Copyright 2012 Aaron Garrett | ||
.. Permission is hereby granted, free of charge, to any person obtaining a copy | ||
|
@@ -20,17 +20,23 @@ | |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
THE SOFTWARE. | ||
.. moduleauthor:: Aaron Garrett <[email protected]> | ||
""" | ||
try: | ||
import importlib.metadata | ||
__version__ = importlib.metadata.version("inspyred") | ||
except ImportError: | ||
import importlib_metadata | ||
__version__ = importlib_metadata.version("inspyred") | ||
|
||
from inspyred import benchmarks | ||
from inspyred import cli | ||
from inspyred import ec | ||
from inspyred import swarm | ||
|
||
__all__ = ['benchmarks', 'cli', 'ec', 'swarm'] | ||
__version__ = '1.0.1' | ||
__author__ = """Aaron Garrett""" | ||
__email__ = '[email protected]' | ||
__url__ = 'http://inspyred.github.com' |
Oops, something went wrong.