Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs/multiversion migration #315

Merged
merged 2 commits into from
May 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .github/workflows/deploy_docs.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
:target: https://github.com/psf/black
.. image:: https://coveralls.io/repos/github/Happy-Algorithms-League/python-gp/badge.svg?branch=master
:target: https://coveralls.io/github/Happy-Algorithms-League/python-gp?branch=master
.. image:: https://readthedocs.org/projects/ansicolortags/badge/?version=latest
:target: https://happy-algorithms-league.github.io/hal-cgp/
.. image:: https://readthedocs.org/projects/hal-cgp/badge/?version=latest
:target: https://hal-cgp.readthedocs.io/en/latest/?badge=latest

Cartesian genetic programming (CGP) in pure Python.

Expand Down
2 changes: 1 addition & 1 deletion cgp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.2.0"
__version__ = "0.3.0.dev0"
__maintainer__ = "Jakob Jordan, Maximilian Schmidt"
__author__ = "Happy Algorithms League"
__license__ = "GPLv3"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def read_long_description():
author=read_metadata("author"),
description=(read_metadata("description")),
license=read_metadata("license"),
keywords=("cartesian genetic programming", "evolutionary algorithm", "symbolic regression"),
keywords=["cartesian genetic programming", "evolutionary algorithm", "symbolic regression"],
url=read_metadata("url"),
python_requires=">=3.6, <4",
install_requires=read_requirements(),
Expand Down