Skip to content

Commit

Permalink
sklearn deprecation update
Browse files Browse the repository at this point in the history
  • Loading branch information
GitMarco27 committed Feb 13, 2023
1 parent 2d9dd93 commit 366c441
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion GitMarco/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
from GitMarco.torch import *
from GitMarco.utils import *
from GitMarco.pipes import *

# from setup import __version__
import logging

__version__ = 'v0.0.21'
logging.basicConfig(format='GitMarco - %(levelname)s: %(message)s',
level=logging.WARNING)
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ gitmarco
matplotlib
pysolar
plotly
sklearn
scikit-learn
tensorflow
torch
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from distutils.core import setup
__version__ = 'v0.0.21'

setup(
name='GitMarco', # How you named your package folder (MyLib)
Expand All @@ -11,14 +12,14 @@
'GitMarco.torch',
'GitMarco.notebooks',
'GitMarco.pipes'], # Chose the same as "name"
version='v0.0.20', # Start with a small number and increase it with every change you make
version=__version__, # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description='An Engineering, Data Science and Deep Learning python package', # Give a short description about
# your library
author='Marco Sanguineti', # Type in your name
author_email='[email protected]', # Type in your E-Mail
url='https://github.com/GitMarco27/GitMarco', # Provide either the link to your github or to your website
download_url='https://github.com/GitMarco27/GitMarco/archive/refs/tags/v0.0.20.tar.gz', # I explain this later on
download_url='https://github.com/GitMarco27/GitMarco/archive/refs/tags/v0.0.21.tar.gz', # I explain this later on
keywords=['DeepLearning', 'DataScience', 'GitMarco'], # Keywords that define your package best
install_requires=[ # I get to this in a second
'pysolar',
Expand All @@ -29,7 +30,7 @@
'torch',
'torchvision',
'torchaudio',
'sklearn',
'scikit-learn',
'pandas',
'scipy',
'tqdm',
Expand Down

0 comments on commit 366c441

Please sign in to comment.