Skip to content

Commit

Permalink
add nine, pathlib2 for py2
Browse files Browse the repository at this point in the history
  • Loading branch information
domeniconappo committed Feb 7, 2020
1 parent 86d3cd4 commit 43aafa5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11
0.11.1
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ dask
xarray
pandas
toolz

pathlib2
nine
7 changes: 6 additions & 1 deletion src/lisfloodutilities/compare/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import os
import logging
import itertools
from pathlib import Path

from nine import IS_PYTHON2
if IS_PYTHON2:
from pathlib2 import Path
else:
from pathlib import Path

import numpy as np
from netCDF4 import Dataset
Expand Down

0 comments on commit 43aafa5

Please sign in to comment.