Skip to content

Commit

Permalink
Fix pyproject.toml
Browse files Browse the repository at this point in the history
Make sure `pyproject.toml` contains the required properties.
  • Loading branch information
elprans committed Jun 21, 2023
1 parent c5f0c19 commit 47529d1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion parsing/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
# supported platforms, publish the packages on PyPI, merge the PR
# to the target branch, create a Git tag pointing to the commit.

__version__ = "2.0.0"
__version__ = "2.0.1"
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[project]
name = "parsing"
description = "LR(1) parser generator for Python"
requires-python = ">=3.7.0"
dynamic = ["version"]

[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
Expand Down Expand Up @@ -27,7 +33,5 @@ no_implicit_reexport = true
strict_equality = true

[[tool.mypy.overrides]]
module = [
"parsing.tests.*",
]
module = ["parsing.tests.*"]
ignore_errors = true

0 comments on commit 47529d1

Please sign in to comment.