Skip to content

Commit

Permalink
Changed name of sharppy utils to sutils due to naming issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Blumberg committed Sep 21, 2019
1 parent 8b7183a commit 7d51110
Show file tree
Hide file tree
Showing 17 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion datasources/data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import sharppy.io.decoder as decoder
from sharppy.io.csv import loadCSV
import utils.frozenutils as frozenutils
import sutils.frozenutils as frozenutils

HOME_DIR = os.path.join(os.path.expanduser("~"), ".sharppy", "datasources")

Expand Down
10 changes: 5 additions & 5 deletions runsharp/full_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
from sharppy.viz.map import MapWidget
import argparse
import traceback
from utils.config import Config
from sutils.config import Config
from os.path import expanduser
import cProfile
from functools import wraps, partial
import datetime as date

from utils.progress import progress
from utils.async_threads import AsyncThreads
from utils.ver_updates import check_latest
from sutils.progress import progress
from sutils.async_threads import AsyncThreads
from sutils.ver_updates import check_latest
from datasources import data_source
from sharppy.io.arw_decoder import ARWDecoder
from sharppy.io.decoder import getDecoders
Expand All @@ -26,7 +26,7 @@
import os
import numpy as np
import warnings
import utils.frozenutils as frozenutils
import sutils.frozenutils as frozenutils
import logging
import qtpy
import platform
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
license = "BSD"
keywords = "meteorology soundings analysis"
url = "https://github.com/sharppy/SHARPpy"
packages = ['sharppy', 'sharppy.databases', 'sharppy.io', 'sharppy.sharptab', 'sharppy.viz', 'utils', 'datasources', 'sharppy.plot', 'runsharp']
packages = ['sharppy', 'sharppy.databases', 'sharppy.io', 'sharppy.sharptab', 'sharppy.viz', 'sutils', 'datasources', 'sharppy.plot', 'runsharp']
package_data = {"": ["*.md", "*.txt", "*.png", "databases/sars/hail/*", "databases/sars/supercell/*",
"databases/shapefiles/*", "../rc/*"],}
include_package_data = True
Expand Down
2 changes: 1 addition & 1 deletion sharppy/io/decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import numpy as np

import sharppy.sharptab.profile as profile
from utils.utils import is_py3
from sutils.utils import is_py3

try:
from urllib2 import urlopen
Expand Down
2 changes: 1 addition & 1 deletion sharppy/io/pecan_decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sharppy.sharptab.prof_collection as prof_collection
from datetime import datetime, timedelta
from sharppy.io.decoder import Decoder
from utils.utils import is_py3
from sutils.utils import is_py3

try:
from StringIO import StringIO
Expand Down
2 changes: 1 addition & 1 deletion sharppy/io/spc_decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sharppy.sharptab.profile as profile
import sharppy.sharptab.prof_collection as prof_collection
from .decoder import Decoder
from utils.utils import is_py3
from sutils.utils import is_py3

try:
from StringIO import StringIO
Expand Down
2 changes: 1 addition & 1 deletion sharppy/sharptab/prof_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import sharppy.sharptab.profile as profile
import sharppy.sharptab.interp as interp
from utils.frozenutils import Process, Queue
from sutils.frozenutils import Process, Queue
import platform
import numpy as np

Expand Down
2 changes: 1 addition & 1 deletion sharppy/viz/SPCWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import sharppy.sharptab.profile as profile
import sharppy.sharptab as tab
import sharppy.io as io
from utils.config import Config
from sutils.config import Config
from datetime import datetime, timedelta
import numpy as np
import platform
Expand Down
2 changes: 1 addition & 1 deletion sharppy/viz/skew.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from qtpy.QtCore import *
from qtpy.QtWidgets import *
from qtpy.QtOpenGL import *
from utils.utils import total_seconds
from sutils.utils import total_seconds
import logging

from datetime import datetime, timedelta
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7d51110

Please sign in to comment.