Skip to content

Commit

Permalink
fixed: added tomli as dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Casyfill committed Aug 13, 2024
1 parent 0315b59 commit 099fb2e
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 @@ -43,7 +43,7 @@ jupyter = "^1.0.0"
watermark = "^2.3.1"
gitchangelog = "^3.0.4"
black = "^24.8.0"
tomli = "2.0.1"
tomli = {version = "^2.0.1", python = "<3.11"}

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
try:
import toml
except ImportError:
import tomlli as toml
import tomli as toml
from pathlib import Path
import dfschema

Expand Down

0 comments on commit 099fb2e

Please sign in to comment.