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
13 changes: 7 additions & 6 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,17 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip'
python-version: '3.12'

- name: Install dependencies
- name: Setup uv
uses: astral-sh/setup-uv@v4

- name: Install docs (and dev) dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
uv sync --extra docs --extra dev

- name: Build site
run: mkdocs build --strict
run: uv run mkdocs build --strict

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FastFlowTransform (PoC 0.3)
# FastFlowTransform (PoC 0.5.1)

[![CI](https://github.com/<org>/<repo>/actions/workflows/ci.yml/badge.svg)](https://github.com/<org>/<repo>/actions/workflows/ci.yml)
[![PyPI version](https://img.shields.io/pypi/v/fastflowtransform.svg)](https://pypi.org/project/fastflowtransform/)
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "fastflowtransform"
version = "0.4.0"
version = "0.5.1"
description = "FastFlowTransform PoC: SQL+Python Models, DAG, DuckDB executor"
readme = "README.md"
license = { text = "Apache-2.0" }
Expand Down Expand Up @@ -47,6 +47,9 @@ dev = [
"pre-commit==3.*",
"pandas-stubs>=2.1",
"types-PyYAML>=6.0.12",
]

docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"pymdown-extensions>=10.0",
Expand Down
18 changes: 10 additions & 8 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.