Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmtroffaes committed Aug 22, 2023
1 parent 6269904 commit c283a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def readfile(filename: str) -> str:
readme = readfile("README.rst").split("\n")[5:] # skip title and badges
requires = readfile("requirements.txt").split("\n")
version_match = re.search(
"'version': '(.+)'", readfile("src/sphinxcontrib/bibtex/__init__.py")
'"version": "(.+)"', readfile("src/sphinxcontrib/bibtex/__init__.py")
)
assert version_match is not None, "version not found"
version = version_match.group(1)
Expand Down

0 comments on commit c283a54

Please sign in to comment.