Skip to content

Commit

Permalink
Fix formatting, adjust supported versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
delucchi-cmu committed Nov 20, 2023
1 parent 61c60a2 commit e745c51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing-and-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers = [
]
dynamic = ["version"]

requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"astropy",
"fsspec<=2023.9.2", # Used for abstract filesystems
Expand Down
4 changes: 3 additions & 1 deletion src/hipscat/io/parquet_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ def get_healpix_pixel_from_metadata(metadata) -> HealpixPixel:
return HealpixPixel(order, pixel)


def write_parquet_metadata(catalog_path: str, order_by_healpix=True, storage_options: dict = None, output_path: str = None):
def write_parquet_metadata(
catalog_path: str, order_by_healpix=True, storage_options: dict = None, output_path: str = None
):
"""Generate parquet metadata, using the already-partitioned parquet files
for this catalog.
Expand Down

0 comments on commit e745c51

Please sign in to comment.