-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update pynio backend for python 3 Update pynio backend to work with python 3. Previous version accessed the iteritems() method of of the Nio variables object, which no longer exists in the python 3 version. Instead, access the items() method here. * Add tests for pynio python3 support Add tests for development version of pynio with python3 support. There is currently no official release version of pynio with python3 support, so we need to pull in the development version from the ncar conda channel to use pynio in python 3 environments and to run the pynio tests in the test suite. Also fixes a bug in the test initialization in which the presence of the pynio library was tested by trying to import "pynio" instead of "Nio" (the actual name of the library). * Add notes to bug fixes documenting changes. Add notes to big fixes section in documentation to highlight changes. * Fix requirements for py36-pynio-dev test Fix requirements for py36-pynio-dev test to remove unnecessary option. * Fix py36-pynio tests Added tests were only specified in the allowed failures and needed to be added to the main include block as well.
- Loading branch information
Showing
5 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: test_env | ||
channels: | ||
- conda-forge | ||
- ncar | ||
dependencies: | ||
- python=3.6 | ||
- dask | ||
- distributed | ||
- h5py | ||
- h5netcdf | ||
- matplotlib | ||
- netcdf4 | ||
- pynio=dev | ||
- pytest | ||
- numpy | ||
- pandas | ||
- scipy | ||
- seaborn | ||
- toolz | ||
- rasterio | ||
- bottleneck | ||
- pip: | ||
- coveralls | ||
- pytest-cov | ||
- pydap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters