Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion paramtools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@


name = "paramtools"
__version__ = "0.18.3"
__version__ = "0.19.0"

__all__ = [
"SchemaFactory",
Expand Down
8 changes: 4 additions & 4 deletions paramtools/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=(
Expand Down
Loading