Skip to content

Commit

Permalink
Merge pull request #142 from jdebacker/0.19.0
Browse files Browse the repository at this point in the history
Prepare 0.19.0 for release
  • Loading branch information
jdebacker authored Nov 28, 2024
2 parents d68b28a + 5e82444 commit 81d19b4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
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="[email protected]",
description=(
Expand Down

0 comments on commit 81d19b4

Please sign in to comment.