From b050aa6eca60d44c32a5d3130a00777e45cd4957 Mon Sep 17 00:00:00 2001 From: Jason Regina Date: Wed, 15 Dec 2021 08:30:43 -0600 Subject: [PATCH 1/3] up version --- src/hydrotools/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hydrotools/_version.py b/src/hydrotools/_version.py index 4eabd0b3..ba51cedf 100644 --- a/src/hydrotools/_version.py +++ b/src/hydrotools/_version.py @@ -1 +1 @@ -__version__ = "2.1.2" +__version__ = "2.2.2" From acecb2cff3a12c7e42413dc7df0f41a67d782ca9 Mon Sep 17 00:00:00 2001 From: Jason Regina Date: Wed, 15 Dec 2021 08:53:57 -0600 Subject: [PATCH 2/3] update minimum versions --- setup.cfg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index fd185901..140dd700 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,10 +30,10 @@ packages = find_namespace: package_dir = =src install_requires = - hydrotools.nwis_client>=3.0.3 - hydrotools.nwm_client>=5.0.1 - hydrotools.events>=1.1.3 - hydrotools.metrics>=1.0.2 + hydrotools.nwis_client>=3.0.6 + hydrotools.nwm_client[gcp]>=5.0.1 + hydrotools.events>=1.1.5 + hydrotools.metrics>=1.1.3 python_requires = >=3.7 include_package_data = True From e033f9e713e0dd7c043602c3d42b326afa8d370a Mon Sep 17 00:00:00 2001 From: Jason Regina Date: Wed, 15 Dec 2021 09:33:53 -0600 Subject: [PATCH 3/3] remove use feature flags --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 52ef6d1a..cd08095c 100644 --- a/Makefile +++ b/Makefile @@ -35,13 +35,13 @@ all-tests: install $(PYTHON) -m pytest -s install: $(PYENV)/bin/activate - $(PYTHON) -m pip install --use-feature=in-tree-build $(SUBPACKAGES_PATHS) + $(PYTHON) -m pip install $(SUBPACKAGES_PATHS) uninstall: $(PYENV)/bin/activate $(PYTHON) -m pip uninstall -y $(addprefix $(PACKAGE)., $(SUBPACKAGES_WITHOUT_EXTRA_REQUIRE)) develop: $(PYENV)/bin/activate - $(PYTHON) -m pip install --use-feature=in-tree-build --editable $(SUBPACKAGES_PATHS) + $(PYTHON) -m pip install --editable $(SUBPACKAGES_PATHS) $(PYENV)/bin/activate: