Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
include:
# Include one that runs in the dev environment
- runs-on: "ubuntu-latest"
Expand Down
15 changes: 14 additions & 1 deletion docs/reference/release-history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
Release History
***************

Unreleased (2025-??-??)
=======================

Changed
-------

* Drop support for Python 3.8 and 3.9.

Added
-----

* Add support for Python 3.13.

v1.23.1 (2025-08-28)
====================

Expand Down Expand Up @@ -182,7 +195,7 @@ Changed
-------

* The package requirements have been relaxed to accept jsonschema versions 2 or
3. Both are supported.
1. Both are supported.

v1.16.1 (2020-10-15)
====================
Expand Down
8 changes: 3 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,21 @@ name = "event-model"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
description = "Data model used by the bluesky ecosystem."
dependencies = [
"importlib-resources",
"jsonschema>=4",
"numpy",
"typing_extensions",
]
dynamic = ["version"]
license.file = "LICENSE"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"

[project.optional-dependencies]
dev = [
Expand All @@ -50,7 +48,7 @@ dev = [
"numpydoc",

# For schema generation.
"pydantic<2.11",
"pydantic",
"datamodel-code-generator",
]

Expand Down
Loading