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
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@master

Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,17 @@ license = { text = "MIT" }
description="MkDocs plugin to directly insert tables from files into markdown."
readme = { file = "README.md", content-type = "text/markdown" }

requires-python=">=3.8"
requires-python=">=3.10"

classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
]

Expand Down
4 changes: 2 additions & 2 deletions tests/test_safe_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def test_safe_eval2():


def test_safe_eval3():
myString = "'\s+'"
assert safe_eval(myString) == "\s+"
myString = r"'\s+'"
assert safe_eval(myString) == r"\s+"


def test_safe_eval4():
Expand Down
Loading
Loading