Skip to content

Commit

Permalink
fix bug in frequency check
Browse files Browse the repository at this point in the history
  • Loading branch information
earthai-tech committed Mar 9, 2024
1 parent 37a20e4 commit 99e2a96
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "watex"
version = "0.3.1"
version = "0.3.2"
description = "Machine learning research in water exploration"
readme = "README.md"
authors = [{name = "Laurent Kouadio", email = "etanoyau@gmail.com"}]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
try:
import watex
VERSION = watex.__version__
except: VERSION ='0.3.1'
except: VERSION ='0.3.2'
# set global variables
DISTNAME = "watex"
DESCRIPTION= "Machine learning research in water exploration"
Expand Down
2 changes: 1 addition & 1 deletion watex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from . import _version
__version__ = _version.version.split('.dev')[0]
except ImportError:
__version__ = "0.3.1"
__version__ = "0.3.2"

# # set loging Level
logging.getLogger(__name__)#.setLevel(logging.WARNING)
Expand Down
2 changes: 1 addition & 1 deletion watex/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# file generated by setuptools_scm
# don't change, don't track in version control
__version__ = version = '0.3.1.dev1+g10707dc.d20230709'
__version__ = version = '0.3.2.dev1+g10707dc.d20230709'
__version_tuple__ = version_tuple = (0, 3, 2, 'dev1', 'g10707dc.d20230709')

0 comments on commit 99e2a96

Please sign in to comment.