Skip to content

Commit cff20dc

Browse files
setup
1 parent 046c247 commit cff20dc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# For a discussion on single-sourcing the version across setup.py and the
3636
# project code, see
3737
# https://packaging.python.org/guides/single-sourcing-package-version/
38-
version="1.1.1", # Required
38+
version="1.1.0", # Required
3939
# This is a one-line description or tagline of what your project does. This
4040
# corresponds to the "Summary" metadata field:
4141
# https://packaging.python.org/specifications/core-metadata/#summary

src/optimisation_algorithms.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: optimisation-algorithms
3-
Version: 1.1.0
3+
Version: 1.1.1
44
Summary: A collection of the most commonly used Optimisation Algorithms for Data Science & Machine Learning
55
Home-page: https://github.com/Muradmustafayev-03/Optimisation-Algorithms
66
Author: Murad Mustafayev

src/optimisation_algorithms/GradientDescent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import random
22
from abc import abstractmethod
33
import numpy as np
4-
from exceptions.FailedToConverge import FailedToConverge
4+
from .exceptions.FailedToConverge import FailedToConverge
55

66

77
class GradientDescent:

0 commit comments

Comments
 (0)