Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bnb/nc4 dep removal #210

Merged
merged 17 commits into from
May 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
removed netcdf4 from version record
  • Loading branch information
bnb32 committed Apr 25, 2024
commit ff057d6d071dca0745c34fc225aa1d3673831c4b
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