Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alpha Release #5

Merged
merged 3 commits into from
Nov 20, 2024
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
21 changes: 11 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@ on:
push:
tags:
- 'v*' # Trigger on version tags
workflow_dispatch: # Allow manual triggering for testing

permissions:
contents: read
id-token: write
workflow_dispatch:

jobs:
test-build:
build-and-publish:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/snowforge

permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4
Expand All @@ -30,7 +33,5 @@ jobs:
- name: Build package
run: hatch build

- name: Test package structure
run: |
python -m pip install dist/*.whl
python -c "import snowforge; print(snowforge.__version__)"
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.0] - 2024-11-17
## [0.1.0-alpha.1] - 2024-11-20

### Added
- Initial alpha release of snowforge-py
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Simplify the creation and management of Snowflake objects and data pipeline proc


```bash
pip install snowforge-py
pip install snowforge
```


Expand Down
2 changes: 1 addition & 1 deletion src/snowforge/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .table import Table, TableBuilder
from .task import Task, TaskType, WarehouseSize

__version__ = "0.1.0"
__version__ = "0.1.0-alpha.1"

__all__ = [
"Forge",
Expand Down
Loading