Skip to content

Commit

Permalink
PyGAD 2.19.1 Release
Browse files Browse the repository at this point in the history
PyGAD 2.19.1 Release Notes
1. Add the [cloudpickle](https://github.com/cloudpipe/cloudpickle) library as a dependency.
  • Loading branch information
ahmedfgad committed Feb 22, 2023
1 parent ed1199d commit c351957
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .pygad import * # Relative import.

__version__ = "2.19.0"
__version__ = "2.19.1"
10 changes: 10 additions & 0 deletions docs/source/Footer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1171,6 +1171,16 @@ Release Date: 22 February 2023
``cal_pop_fitness()`` method.
https://github.com/ahmedfgad/GeneticAlgorithmPython/issues/79#issuecomment-1439605442

.. _pygad-2191:

PyGAD 2.19.1
------------

Release Date: 22 February 2023

1. Add the `cloudpickle <https://github.com/cloudpipe/cloudpickle>`__
library as a dependency.

PyGAD Projects at GitHub
========================

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Ahmed Fawzy Gad'

# The full version, including alpha/beta/rc tags
release = '2.19.0'
release = '2.19.1'

master_doc = 'index'

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

setuptools.setup(
name="pygad",
version="2.19.0",
version="2.19.1",
author="Ahmed Fawzy Gad",
install_requires=["numpy", "matplotlib",],
install_requires=["numpy", "matplotlib", "cloudpickle",],
author_email="ahmed.f.gad@gmail.com",
description="PyGAD: A Python 3 Library for Building the Genetic Algorithm and Training Machine Learning Algoithms (Keras & PyTorch).",
long_description=long_description,
Expand Down

0 comments on commit c351957

Please sign in to comment.