Skip to content

Commit c351957

Browse files
committed
PyGAD 2.19.1 Release
PyGAD 2.19.1 Release Notes 1. Add the [cloudpickle](https://github.com/cloudpipe/cloudpickle) library as a dependency.
1 parent ed1199d commit c351957

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .pygad import * # Relative import.
22

3-
__version__ = "2.19.0"
3+
__version__ = "2.19.1"

docs/source/Footer.rst

+10
Original file line numberDiff line numberDiff line change
@@ -1171,6 +1171,16 @@ Release Date: 22 February 2023
11711171
``cal_pop_fitness()`` method.
11721172
https://github.com/ahmedfgad/GeneticAlgorithmPython/issues/79#issuecomment-1439605442
11731173

1174+
.. _pygad-2191:
1175+
1176+
PyGAD 2.19.1
1177+
------------
1178+
1179+
Release Date: 22 February 2023
1180+
1181+
1. Add the `cloudpickle <https://github.com/cloudpipe/cloudpickle>`__
1182+
library as a dependency.
1183+
11741184
PyGAD Projects at GitHub
11751185
========================
11761186

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Ahmed Fawzy Gad'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '2.19.0'
25+
release = '2.19.1'
2626

2727
master_doc = 'index'
2828

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
setuptools.setup(
77
name="pygad",
8-
version="2.19.0",
8+
version="2.19.1",
99
author="Ahmed Fawzy Gad",
10-
install_requires=["numpy", "matplotlib",],
10+
install_requires=["numpy", "matplotlib", "cloudpickle",],
1111
author_email="[email protected]",
1212
description="PyGAD: A Python 3 Library for Building the Genetic Algorithm and Training Machine Learning Algoithms (Keras & PyTorch).",
1313
long_description=long_description,

0 commit comments

Comments
 (0)