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: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.10"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "pypy-3.11"]
include:
- os: windows-latest
python-version: "3.9"
python-version: "3.10"
- os: macos-latest
python-version: "3.9"
python-version: "3.10"
- os: windows-latest
python-version: "3.13"
python-version: "3.14"
- os: macos-latest
python-version: "3.13"
python-version: "3.14"
runs-on: ${{ matrix.os }}

steps:
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-ast
- id: check-merge-conflict
Expand All @@ -14,12 +14,12 @@ repos:
- id: actionlint

- repo: https://github.com/psf/black
rev: 25.1.0
rev: 25.9.0
hooks:
- id: black

- repo: https://github.com/pycqa/flake8
rev: 7.2.0
rev: 7.3.0
hooks:
- id: flake8
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010-2024 Jeremy Avnet
Copyright (c) 2010-2025 Jeremy Avnet

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
dynamic = ["version"]
name = "json-store"
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = []

authors = [{name = "jeremy avnet", email = "[email protected]"}]
Expand All @@ -20,11 +20,11 @@ classifiers = [

"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
Expand Down
2 changes: 1 addition & 1 deletion src/json_store/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .json_store import JSONStore

__version__ = "4.2"
__version__ = "4.3"

open = JSONStore