Skip to content

Commit 459dc34

Browse files
committed
Builds the ncl package. Updated the version.
1 parent df89856 commit 459dc34

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

pyscripts/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '7.0.9.3.0'
1+
__version__ = '8.0.0rc1'

pyscripts/uedge.py

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
from .wdfpy import wdf
3838
from .apipy import api
3939
from .aphpy import aph
40+
from .nclpy import ncl
4041
else:
4142
from wdfpy import wdf
4243
from grdpy import grd
@@ -46,6 +47,7 @@
4647
from apipy import api
4748
from aphpy import aph
4849
from compy import com
50+
from nclpy import ncl
4951

5052
import time
5153
import os.path

pyscripts/uedge_lists.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import uedge
88
import re
9-
packages = [uedge.com,uedge.aph,uedge.api,uedge.bbb,uedge.flx,uedge.grd,uedge.svr,uedge.wdf]
9+
packages = [uedge.com,uedge.aph,uedge.api,uedge.bbb,uedge.flx,uedge.grd,uedge.svr,uedge.wdf,uedge.ncl]
1010

1111

1212
def packagename2object(package):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import getopt
1212
import logging
1313

14-
version='8.0.0rc1'
14+
version='8.0.0rc3'
1515

1616
try:
1717
os.environ['PATH'] += os.pathsep + site.USER_BASE + '/bin'

0 commit comments

Comments
 (0)