Skip to content

Commit c20367e

Browse files
authored
Merge pull request #22 from mjayadharan/module_dev
changed the version in modules to 0.2.0, changed the imprts in fluidl…
2 parents 260d3f0 + ce2466f commit c20367e

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

fluidlearn/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
#__init__.py
2-
from .fluidlearn import *
2+
from fluidlearn.fluidlearn import Solver
3+
from fluidlearn.dataprocess import imp_from_csv

fluidlearn/dataprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
__copyright__ = "Copyright 2020, fluidlearn"
1010
__credits__ = ["Manu Jayadharan"]
1111
__license__ = ""
12-
__version__ = "0.1.0"
12+
__version__ = "0.2.0"
1313
__maintainer__ = "Manu Jayadharan"
1414
__email__ = "manu.jayadharan@pitt.edu"
1515
__status__ = "Development"

fluidlearn/fluidlearn.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@
77
from tensorflow import keras
88
from tensorflow.keras import backend as K
99

10-
import fluidmodels
11-
import dataprocess
12-
import losses
10+
11+
from fluidlearn import fluidmodels
12+
from fluidlearn import dataprocess
13+
from fluidlearn import losses
1314
except Exception as e:
1415
print("Error occured while importing dependency packages. More details:\n",e)
1516

1617
__author__ = "Manu Jayadharan"
1718
__copyright__ = "Copyright 2020, fluidlearn"
1819
__credits__ = ["Manu Jayadharan"]
1920
__license__ = ""
20-
__version__ = "0.1.0"
21+
__version__ = "0.2.0"
2122
__maintainer__ = "Manu Jayadharan"
2223
__email__ = "manu.jayadharan@pitt.edu"
2324
__status__ = "Development"

fluidlearn/fluidmodels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
__copyright__ = "Copyright 2020, fluidlearn"
1616
__credits__ = ["Manu Jayadharan"]
1717
__license__ = ""
18-
__version__ = "0.1.0"
18+
__version__ = "0.2.0"
1919
__maintainer__ = "Manu Jayadharan"
2020
__email__ = "manu.jayadharan@pitt.edu"
2121
__status__ = "Development"

fluidlearn/losses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__copyright__ = "Copyright 2020, fluidlearn"
1111
__credits__ = ["Manu Jayadharan"]
1212
__license__ = ""
13-
__version__ = "0.1.0"
13+
__version__ = "0.2.0"
1414
__maintainer__ = "Manu Jayadharan"
1515
__email__ = "manu.jayadharan@pitt.edu"
1616
__status__ = "Development"

0 commit comments

Comments
 (0)