Skip to content

Commit 188f117

Browse files
Merge pull request #16 from KyberCritter/release-v0.1.3-hotfix-2
Release v0.1.3 hotfix 2
2 parents 41b96c3 + 641116e commit 188f117

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
23+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2424

2525
steps:
2626
- uses: actions/checkout@v4

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Object Filtering
22

3+
![Build Status](https://github.com/KyberCritter/Object-Filtering/actions/workflows/python-package.yml/badge.svg?branch=main)
4+
![Python Versions](https://img.shields.io/badge/python-3.10--3.13-blue)
5+
36
A Python module for determining whether arbitrary Python objects meet a set of defined criteria. Filters use JSON to represent a set of criteria that objects must meet. Filters can be arbitrarily nested and can contain conditional logic.
47

58
See `/docs/filter_specifications.md` for details on filter implementation.

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ authors = [
1313
]
1414
description = "A module for determining whether arbitrary Python objects meet a set of defined criteria."
1515
readme = "README.md"
16-
requires-python = ">=3.12"
16+
requires-python = ">=3.10"
1717
classifiers = [
1818
"License :: OSI Approved :: MIT License",
19+
"Programming Language :: Python :: 3.10",
20+
"Programming Language :: Python :: 3.11",
1921
"Programming Language :: Python :: 3.12",
2022
"Programming Language :: Python :: 3.13",
2123
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)