Skip to content

Commit d69fb2b

Browse files
committed
Add support for Python 3.14
1 parent 1336e43 commit d69fb2b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
19+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
2020

2121
steps:
2222
- uses: actions/checkout@v2

mathparse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
mathparse is a library for solving mathematical equations contained in strings
33
"""
44

5-
__version__ = '0.2.6'
5+
__version__ = '0.2.7'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ version = {attr = "mathparse.__version__"}
1212

1313
[project]
1414
name = "mathparse"
15-
requires-python = ">=3.9,<3.14"
15+
requires-python = ">=3.9,<3.15"
1616
urls = { Documentation = "https://mathparse.chatterbot.us", Repository = "https://github.com/gunthercox/mathparse", Changelog = "https://github.com/gunthercox/mathparse/releases" }
1717
authors = [
1818
{name = "Gunther Cox"},

0 commit comments

Comments
 (0)