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: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
name: documentation
path: ./docs-build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs-build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python 3.12
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"

Expand All @@ -44,10 +44,10 @@ jobs:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
repos:
- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
rev: 7.3.0
hooks:
- id: flake8
args:
- --ignore=E501,E712,W503
- repo: https://github.com/timothycrosley/isort
rev: 5.13.2
rev: 6.0.1
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/psf/black
rev: 24.1.1
rev: 25.1.0
hooks:
- id: black
language_version: python3.12
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
rev: v1.17.0
hooks:
- id: mypy
exclude: /tests/
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
### Updated

- Updated stac-validator dependency to v3.10.1 ([#140](https://github.com/stac-utils/stac-check/pull/140))
- Updated Github Actions and documentation dependencies ([#139](https://github.com/stac-utils/stac-check/pull/139))

### Removed

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ COPY . .

# Install the package in development mode with dev and docs extras
RUN pip install -e ".[dev,docs]"

CMD ["stac_check"]
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
project = "stac-check"
copyright = "2025, Jonathan Healy"
author = "Jonathan Healy"
release = "1.7.0"
release = "1.11.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down Expand Up @@ -55,6 +55,7 @@
html_static_path = ["_static"]

myst_heading_anchors = 3 # Generate anchors for h1, h2, and h3
suppress_warnings = ["myst.header", "myst.xref_missing"]

# Configure myst-parser to handle images
myst_url_schemes = ("http", "https", "mailto", "ftp")
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For more detailed documentation, please see the following pages:
api

Indices and tables
=================
==================

* :ref:`genindex`
* :ref:`modindex`
Expand Down
8 changes: 4 additions & 4 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sphinx>=4.0.0
sphinx_rtd_theme>=1.0.0
myst-parser>=0.18.0
sphinx-autodoc-typehints>=1.18.0
sphinx>=8.2.3
sphinx_rtd_theme>=3.0.2
myst-parser>=4.0.1
sphinx-autodoc-typehints>=3.2.0
15 changes: 7 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""stac-check setup.py
"""
"""stac-check setup.py"""

from setuptools import find_packages, setup

Expand All @@ -17,8 +16,8 @@
include_package_data=True,
setup_requires=["setuptools"],
install_requires=[
"requests>=2.32.3",
"jsonschema>=4.23.0",
"requests>=2.32.4",
"jsonschema>=4.25.0",
"click>=8.1.8",
"stac-validator~=3.10.1",
"PyYAML",
Expand All @@ -32,11 +31,11 @@
"stac-validator[pydantic]~=3.10.1",
],
"docs": [
"sphinx>=4.0.0",
"sphinx>=8.2.3",
"sphinx-click>=6.0.0",
"sphinx_rtd_theme>=1.0.0",
"myst-parser>=0.18.0",
"sphinx-autodoc-typehints>=1.18.0",
"sphinx_rtd_theme>=3.0.2",
"myst-parser>=4.0.1",
"sphinx-autodoc-typehints>=3.2.0",
],
"pydantic": ["stac-validator[pydantic]~=3.10.1"],
},
Expand Down