Skip to content

Commit

Permalink
Merge pull request #9 from autonomio/fix_old_keras_import
Browse files Browse the repository at this point in the history
fixed old imports
  • Loading branch information
mikkokotila authored Jan 26, 2022
2 parents 6a28176 + d3873be commit f5bbcc3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 9
matrix:
python-version: [3.6, 3.7]
python-version: [3.7, 3.8]
os: [ubuntu-latest, macos-latest]

steps:
Expand Down
1 change: 1 addition & 0 deletions kerasplotlib/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
from kerasplotlib.traininglog import TrainingLog
from kerasplotlib.text import text
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
keras
matplotlib
ipython
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
URL = 'http://mikkokotila.com'
LICENSE = 'MIT'
DOWNLOAD_URL = 'https://github.com/autonomio/kerasplotlib'
VERSION = '0.2.0'
VERSION = '0.2.1'

try:
from setuptools import setup
Expand All @@ -31,10 +31,6 @@ def check_dependencies():
import matplotlib
except ImportError:
install_requires.append('matplotlib')
try:
import keras
except ImportError:
install_requires.append('keras')
try:
import ipython
except ImportError:
Expand Down

0 comments on commit f5bbcc3

Please sign in to comment.