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
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Source - https://stackoverflow.com/a/78380165
# Posted by Stefan, modified by community. See post 'Timeline' for change history
# Retrieved 2026-04-14, License - CC BY-SA 4.0

# Set update schedule for GitHub Actions

version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
make html

- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v6

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
# Upload just docs
path: 'docs/sphinx/build/html'
Expand Down
3 changes: 2 additions & 1 deletion docs/sphinx/source/api/Contributors.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
# Modelspec contributors

This page list names and Github profiles of contributors to Modelspec, listed in no particular order.
This page is generated periodically, most recently on 2026-04-29.
This page is generated periodically, most recently on 2026-06-10.

- Padraig Gleeson ([@pgleeson](https://github.com/pgleeson))
- Manifest Chakalov ([@mqnifestkelvin](https://github.com/mqnifestkelvin))
- David Turner ([@davidt0x](https://github.com/davidt0x))
- Peace Ododo ([@Onoyiza](https://github.com/Onoyiza))
- Parikshit Singh Rathore ([@parikshit14](https://github.com/parikshit14))
- Ankur Sinha ([@sanjayankur31](https://github.com/sanjayankur31))
- dependabot[bot] ([@dependabot[bot]](https://github.com/apps/dependabot))
- kmantel ([@kmantel](https://github.com/kmantel))
- Robert Vickerstaff ([@robertvi](https://github.com/robertvi))
6 changes: 4 additions & 2 deletions docs/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

import modelspec

# -- Path setup --------------------------------------------------------------
import sys

Expand All @@ -18,9 +20,9 @@
# -- Project information -----------------------------------------------------

project = "Modelspec"
copyright = "2023, ModECI Project"
copyright = "2026, ModECI Project"
author = "ModECI Project"
release = "0.3.1"
release = modelspec.__version__

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/modelspec/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.9"
__version__ = "0.3.10"

from .base_types import Base, define, has, field, fields, optional, instance_of, in_

Expand Down
Loading