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
10 changes: 6 additions & 4 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,21 @@ on:

jobs:
job:
name: GitHub Pages
name: Docs
runs-on: ubuntu-latest
container: ghcr.io/astral-sh/uv:python3.12-bookworm
env:
UV_PROJECT_ENVIRONMENT: /usr/local
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
id: tag
- run: uv sync --frozen
- run: docs/build
- uses: peaceiris/actions-gh-pages@v4
with:
force_orphan: true
destination_dir: ${{ steps.tag.outputs.tag }}
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build
2 changes: 0 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ jobs:
- python3.13-bookworm
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: uv sync --frozen
- run: black --check ${PYTHON_DIRS}
- run: pyright ${PYTHON_DIRS}
Expand Down
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Azely ###
.azely/
# Created by https://www.toptal.com/developers/gitignore/api/python
# Edit at https://www.toptal.com/developers/gitignore?templates=python

### Python ###
# Byte-compiled / optimized / DLL files
Expand Down Expand Up @@ -74,7 +74,7 @@ instance/

# Sphinx documentation
docs/readme.rst
docs/_apidoc
docs/_apidoc/
docs/_build/

# PyBuilder
Expand Down Expand Up @@ -174,3 +174,5 @@ poetry.toml

# LSP config files
pyrightconfig.json

# End of https://www.toptal.com/developers/gitignore/api/python
11 changes: 6 additions & 5 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
cff-version: 1.2.0
title: azely
message: >-
If you use this software, please cite it using the metadata from this file.
If you use this software, please cite it using the
metadata from this file.
type: software
authors:
- given-names: Akio
Expand All @@ -16,8 +17,8 @@ identifiers:
- type: doi
value: 10.5281/zenodo.3680060
repository-code: 'https://github.com/astropenguin/azely'
url: 'https://astropenguin.github.io/azely'
abstract: Azimuth/elevation visualization for astronomy
url: 'https://astropenguin.github.io/azely/1.0.0'
abstract: Azimuth/elevation calculator for astronomical objects
keywords:
- python
- astronomy
Expand All @@ -27,5 +28,5 @@ keywords:
- sidereal-time
- visibility
license: MIT
version: 0.7.0
date-released: '2022-11-03'
version: 1.0.0
date-released: '2025-07-07'
Loading