Skip to content

Commit

Permalink
Merge branch 'release/v0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Panchenko committed Jun 1, 2021
2 parents ed3d798 + bd944e8 commit 43460b1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1
commit = False
tag = False
allow_dirty = False
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas~=1.0.0
scipy==1.4.1
scipy~=1.4
numpy~=1.18.0
scikit-learn~=0.22.0
seaborn~=0.10.0
typing-extensions==3.7.4.2
typing-extensions~=3.7
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
setup(
name='sensai',
package_dir={"": "src"},
license="MIT",
url="https://github.com/jambit/sensAI",
packages=find_packages(where="src"),
include_package_data=True,
version='0.1.0',
version='0.1.1',
description='Library for sensible AI',
install_requires=[
line
Expand Down
2 changes: 1 addition & 1 deletion src/sensai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
TensorToTensorClassificationModel, TensorToScalarClassificationModel
from .vector_model import PredictorModel, VectorModel, VectorRegressionModel, VectorClassificationModel

__version__ = "0.1.0"
__version__ = "0.1.1"

# The following submodules are not imported by default to avoid necessarily requiring their dependencies:
# tensorflow
Expand Down

0 comments on commit 43460b1

Please sign in to comment.