Skip to content

Commit f66cf60

Browse files
committed
🔖 bump to version 0.1.0
1 parent f1e2b21 commit f66cf60

File tree

8 files changed

+1
-27
lines changed

8 files changed

+1
-27
lines changed

nwpc_graphics/systems/grapes_gfs_gmf/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
import datetime
32
import tempfile
43
import pathlib

nwpc_graphics/systems/grapes_gfs_gmf/graphics/an_aea/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# coding: utf-8
2-
3-
import datetime
4-
5-
import pytimeparse
6-
71
from nwpc_graphics.systems.grapes_gfs_gmf.plotter import BasePlotter
82

93

nwpc_graphics/systems/grapes_gfs_gmf/graphics/fc_aea/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
# coding: utf-8
2-
31
from nwpc_graphics.systems.grapes_gfs_gmf.plotter import BasePlotter
42

53

64
class FcAeaPlotter(BasePlotter):
75
def __init__(self, task: dict, work_dir: str, config: dict):
86
BasePlotter.__init__(self, task, work_dir, config)
97

10-
self.ncl_script_name = None
11-
128
def _get_image_list(self):
139
forecast_hour = f"{int(self.forecast_timedelta.total_seconds()) // 3600:03}"
1410
return [{

nwpc_graphics/systems/grapes_gfs_gmf/graphics/fc_aeua/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
# coding: utf-8
2-
31
from nwpc_graphics.systems.grapes_gfs_gmf.plotter import BasePlotter
42

53

64
class FcAeuaPlotter(BasePlotter):
75
def __init__(self, task: dict, work_dir: str, config: dict):
86
BasePlotter.__init__(self, task, work_dir, config)
97

10-
self.ncl_script_name = None
11-
128
def _get_image_list(self):
139
forecast_hour = f"{int(self.forecast_timedelta.total_seconds()) // 3600:03}"
1410
return [{

nwpc_graphics/systems/grapes_gfs_gmf/graphics/fc_ahne/__init__.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
1-
# coding: utf-8
2-
3-
import datetime
4-
5-
import pytimeparse
6-
71
from nwpc_graphics.systems.grapes_gfs_gmf.plotter import BasePlotter
82

93

104
class FcAhnePlotter(BasePlotter):
115
def __init__(self, task: dict, work_dir: str, config: dict):
126
BasePlotter.__init__(self, task, work_dir, config)
137

14-
self.ncl_script_name = None
15-
168
def _get_image_list(self):
179
forecast_hour = f"{int(self.forecast_timedelta.total_seconds()) // 3600:03}"
1810
return [{

nwpc_graphics/systems/grapes_gfs_gmf/plotter.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
from pathlib import Path
42
import datetime
53
import os

nwpc_graphics/systems/grapes_gfs_gmf/util.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
import pathlib
32
import inspect
43

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
setup(
55
name='nwpc-graphics',
66

7-
version='0.0.1',
7+
version='0.1.0',
88

99
description='NWPC Graphics project.',
1010
long_description=__doc__,

0 commit comments

Comments
 (0)