We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In pyroms/pyroms/cf.py on the python3 branch, cftime is imported, with a fallback to netcdftime:
try: import cftime except: import netcdftime
This is OK, but later in class time, netcdftime.utime is invoked, which will fail if cftime was successfully imported.
Given that cftime replaced netcdftime in March 2018 and is now available everywhere, I suggest dropping references to netcdftime.
I will prepare a pull request.
The text was updated successfully, but these errors were encountered:
Thank you! I will look into your PR once I'm back in the office next week.
Sorry, something went wrong.
No branches or pull requests
In pyroms/pyroms/cf.py on the python3 branch, cftime is imported, with a fallback to netcdftime:
This is OK, but later in class time, netcdftime.utime is invoked, which will fail if cftime was successfully imported.
Given that cftime replaced netcdftime in March 2018 and is now available everywhere, I suggest dropping references to netcdftime.
I will prepare a pull request.
The text was updated successfully, but these errors were encountered: