Skip to content

Commit

Permalink
removed netcdf4 from version record
Browse files Browse the repository at this point in the history
  • Loading branch information
bnb32 committed Apr 25, 2024
1 parent 519f577 commit ff057d6
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions sup3r/utilities/__init__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
"""Sup3r utilities"""
import sys
import pandas as pd
import numpy as np
import tensorflow as tf
import sklearn
import dask
import xarray
import netCDF4
from enum import Enum

import dask
import numpy as np
import pandas as pd
import phygnn
import rex
import sklearn
import tensorflow as tf
import xarray

from sup3r import __version__


VERSION_RECORD = {'sup3r': __version__,
'tensorflow': tf.__version__,
'sklearn': sklearn.__version__,
Expand All @@ -24,7 +22,6 @@
'nrel-rex': rex.__version__,
'python': sys.version,
'xarray': xarray.__version__,
'netCDF4': netCDF4.__version__,
'dask': dask.__version__,
}

Expand Down Expand Up @@ -56,6 +53,7 @@ def __format__(self, format_spec):
@classmethod
def all_names(cls):
"""All module names.
Returns
-------
set
Expand Down

0 comments on commit ff057d6

Please sign in to comment.