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
8 changes: 8 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,16 @@ jobs:
ci:
name: Continuous integration
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Sync
run: uv sync
- name: Pre-Commit Hooks
Expand All @@ -26,6 +33,7 @@ jobs:
- name: Docs
run: uv run mkdocs build --strict
- uses: actions/upload-pages-artifact@v3
if: ${{ matrix.python-version == '3.12' }}
with:
path: site/

Expand Down
4 changes: 2 additions & 2 deletions stapi-fastapi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ version = "0.6.0"
description = "Sensor Tasking API (STAPI) with FastAPI"
authors = [
{ name = "Christian Wygoda", email = "[email protected]" },
{ name = "Phil Varner", email = "[email protected]" }
{ name = "Phil Varner", email = "[email protected]" },
]
readme = "README.md"
license = "MIT"

requires-python = ">=3.10"
requires-python = ">=3.12"

dependencies = [
"httpx>=0.27.0",
Expand Down
7 changes: 2 additions & 5 deletions stapi-pydantic/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ authors = [
{ name = "Phil Varner", email = "[email protected]" },
{ name = "Pete Gadomski", email = "[email protected]" },
]
requires-python = ">=3.10"
dependencies = [
"cql2>=0.3.6",
"geojson-pydantic>=1.2.0",
]
requires-python = ">=3.12"
dependencies = ["cql2>=0.3.6", "geojson-pydantic>=1.2.0"]

[project.scripts]
stapi-pydantic = "stapi_pydantic:main"
Expand Down
Loading