Skip to content

Commit

Permalink
release 0.3.0rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
davorrunje committed Jun 5, 2023
1 parent 384265a commit 9362cee
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion nbs/experiments/AutoMPG.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
"# | hide\n",
"\n",
"if in_colab:\n",
" !pip install monotonic-nn"
" !pip install \"monotonic-nn[experiments]\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion nbs/experiments/Blog.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"# | hide\n",
"\n",
"if in_colab:\n",
" !pip install monotonic-nn"
" !pip install \"monotonic-nn[experiments]\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion nbs/experiments/Compas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
"# | hide\n",
"\n",
"if in_colab:\n",
" !pip install monotonic-nn"
" !pip install \"monotonic-nn[experiments]\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion nbs/experiments/Heart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"# | hide\n",
"\n",
"if in_colab:\n",
" !pip install monotonic-nn"
" !pip install \"monotonic-nn[experiments]\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion nbs/experiments/Loan.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"# | hide\n",
"\n",
"if in_colab:\n",
" !pip install monotonic-nn"
" !pip install \"monotonic-nn[experiments]\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
### Python library ###
repo = monotonic-nn
lib_name = %(repo)s
version = 0.2.0
version = 0.3.0rc0
min_python = 3.8
license = cc

Expand Down
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@
lic = licenses.get(cfg['license'].lower(), (cfg['license'], None))

requirements = ["tensorflow>=2.10.0"]


experiments_requirements = [
"keras-tuner[bayesian]==1.3.5"
]

dev_requirements = [
"keras-tuner[bayesian]==1.3.5",
"nbdev_mkdocs==0.5.1",
"pytest==7.3.1",
"pandas>=1.3.5",
Expand All @@ -49,8 +52,8 @@
project_urls = {
'Bug Tracker': cfg['git_url'] + '/issues',
'CI': cfg['git_url'] + '/actions',
'Documentation': 'https://mono-dense-keras.airt.ai/',
# 'Tutorial': 'https://colab.research.google.com/github/airtai/fastkafka/blob/main/nbs/guides/Guide_00_FastKafka_Demo.ipynb'
'Documentation': 'https://monotonic.airt.ai/',
'Tutorial': 'https://colab.research.google.com/github/airtai/monotonic-nn/blob/main/nbs/index.ipynb'
}

setuptools.setup(
Expand All @@ -66,7 +69,7 @@
packages = setuptools.find_packages(),
include_package_data = True,
install_requires = requirements,
extras_require={ 'dev': dev_requirements },
extras_require={ 'dev': dev_requirements + experiments_requirements, "experiments": experiments_requirements },
dependency_links = cfg.get('dep_links','').split(),
python_requires = '>=' + cfg['min_python'],
long_description = open('README.md').read(),
Expand Down

0 comments on commit 9362cee

Please sign in to comment.