Skip to content

Commit

Permalink
Merge branch 'main' into carbonplan_cataloging
Browse files Browse the repository at this point in the history
  • Loading branch information
norlandrhagen committed Jan 10, 2024
2 parents d6a4eac + c8206aa commit c3e337d
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 4 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release Python Package

on:
release:
types: [created]

jobs:
deploy:
runs-on: ubuntu-latest
if: github.repository == 'leap-stc/data-management-utils'
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools setuptools-scm build twine
- name: Build and publish
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python -m build
twine check dist/*
twine upload dist/*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# pangeo-forge-big-query
# LEAP Data Management Utils
File renamed without changes.
File renamed without changes.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"


[project]
name = "pangeo-forge-big-query"
name = "data-management-utils"
dynamic = ["version"]
requires-python = ">=3.9"
description = "pangeo-forge-recipes extension library for logging data in Google Big Query"
description = "LEAP / pangeo-forge-recipes extension library for logging data in Google Big Query"
readme = "README.md"
authors = [{ name = "CarbonPlan", email = "tech@carbonplan.org" }]
classifiers = [
Expand All @@ -26,7 +26,6 @@ dependencies = [
"apache-beam",
"google-cloud-bigquery",
"google-api-core",
"tornado",
"zarr",
]

Expand Down

0 comments on commit c3e337d

Please sign in to comment.