Skip to content

Commit

Permalink
Keep version information only in the pyproject.toml, not in the python
Browse files Browse the repository at this point in the history
  • Loading branch information
danthedeckie committed Oct 22, 2024
1 parent 44bb1a9 commit 9cb9bea
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[project]
name = "simpleeval"
version = "1.0.1"
requires-python = ">=3.9"
readme = "README.rst"
description = "A simple, safe single expression evaluator library."
Expand All @@ -21,7 +22,6 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
]
dynamic = ["version"]
dependencies = [
"pip>=24.2",
]
Expand Down
2 changes: 0 additions & 2 deletions simpleeval.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@
"""

__version__ = "1.0.1"

import ast
import operator as op
import sys
Expand Down

0 comments on commit 9cb9bea

Please sign in to comment.