Skip to content

Commit

Permalink
Update conf.py with tomli
Browse files Browse the repository at this point in the history
  • Loading branch information
skoudoro authored Sep 14, 2023
1 parent 96b8c8e commit 3b2004d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@

import os
import sys
import tomllib
try:
import tomllib
except ImportError:
import tomli as tomllib


from packaging.version import Version
Expand Down

0 comments on commit 3b2004d

Please sign in to comment.