Skip to content

Commit

Permalink
- cleaning up dependency;
Browse files Browse the repository at this point in the history
  • Loading branch information
jaltmayerpizzorno committed May 1, 2024
1 parent 7a747fa commit d691f3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ slipcover = "slipcover.__main__:main"
requires = [
"setuptools>61",
"wheel",
"pip; python_version < '3.11'" # for tomllib
"tomli; python_version < '3.11'" # tomllib alternative
]
build-backend = "setuptools.build_meta"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
try:
import tomllib # available in Python 3.11+
except ImportError:
from pip._vendor import tomli as tomllib
import tomli as tomllib


PYTHON_VERSION = sys.version_info[0:2]
Expand Down

0 comments on commit d691f3e

Please sign in to comment.