Skip to content

Commit 5fd1a58

Browse files
committed
Use hatchling instead of setuptools
1 parent 587b43c commit 5fd1a58

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

pygad/__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__ = "3.0.1"
3+
__version__ = "3.1.0"

pygad/cnn/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .cnn import *
22

3-
__version__ = "1.0.0"
3+
__version__ = "1.1.0"
44

pygad/helper/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from pygad.helper import unique
22

3-
__version__ = "1.0.0"
3+
__version__ = "1.1.0"

pygad/kerasga/__init__.py

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

3-
__version__ = "1.2.0"
3+
__version__ = "1.3.0"

pygad/utils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from pygad.utils import crossover
33
from pygad.utils import mutation
44

5-
__version__ = "1.0.0"
5+
__version__ = "1.0.1"

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[build-system]
2-
requires = ["setuptools>=61.0"]
3-
build-backend = "setuptools.build_meta"
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
44

55
[project]
66
name = "pygad"
7-
version = "3.0.1"
7+
version = "3.1.0"
88
description = "PyGAD: A Python Library for Building the Genetic Algorithm and Training Machine Learning Algoithms (Keras & PyTorch)."
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
requires-python = ">=3"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="pygad",
8-
version="3.0.1",
8+
version="3.1.0",
99
author="Ahmed Fawzy Gad",
1010
install_requires=["numpy", "matplotlib", "cloudpickle",],
1111
author_email="ahmed.f.gad@gmail.com",

0 commit comments

Comments
 (0)