diff --git a/environment.yml b/environment.yml index dacd492..7903a13 100644 --- a/environment.yml +++ b/environment.yml @@ -8,6 +8,7 @@ dependencies: - "pytest>=6.0.0" - pandas - fsspec + - pyopenssl - s3fs # required for tests but not most usage. - gcsfs # required for tests but not most usage. - requests # required for tests but not most usage. diff --git a/paramtools/__init__.py b/paramtools/__init__.py index 3df4769..292fa9f 100644 --- a/paramtools/__init__.py +++ b/paramtools/__init__.py @@ -53,7 +53,7 @@ name = "paramtools" -__version__ = "0.18.3" +__version__ = "0.19.0" __all__ = [ "SchemaFactory", diff --git a/paramtools/tests/test_utils.py b/paramtools/tests/test_utils.py index c0b8d27..987e55f 100644 --- a/paramtools/tests/test_utils.py +++ b/paramtools/tests/test_utils.py @@ -19,10 +19,10 @@ def test_read_s3(self): res = read_json("s3://paramtools-test/defaults.json", {"anon": True}) assert isinstance(res, dict) - @pytest.mark.network_bound - def test_read_gcp(self): - res = read_json("gs://paramtools-dev/defaults.json", {"token": "anon"}) - assert isinstance(res, dict) + # @pytest.mark.network_bound + # def test_read_gcp(self): + # res = read_json("gs://paramtools-dev/defaults.json", {"token": "anon"}) + # assert isinstance(res, dict) @pytest.mark.network_bound def test_read_http(self): diff --git a/setup.py b/setup.py index e6c1ced..4cbb390 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setuptools.setup( name="paramtools", - version=os.environ.get("VERSION", "0.18.3"), + version=os.environ.get("VERSION", "0.19.0"), author="Hank Doupe", author_email="henrymdoupe@gmail.com", description=(