Skip to content

Commit

Permalink
Bump up pypi package version.
Browse files Browse the repository at this point in the history
  • Loading branch information
shaoyijia committed Sep 23, 2024
1 parent 400190e commit 0e97efa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
# Remove p tags.
pattern = re.compile(r'<p.*?>.*?</p>', re.DOTALL)
long_description = re.sub(pattern, '', long_description)
pattern = re.compile(r"<p.*?>.*?</p>", re.DOTALL)
long_description = re.sub(pattern, "", long_description)

# Read the content of the requirements.txt file
with open("requirements.txt", encoding="utf-8") as f:
Expand All @@ -16,7 +16,7 @@

setup(
name="knowledge-storm",
version="0.2.5",
version="0.2.6",
author="Yijia Shao, Yucheng Jiang",
author_email="[email protected], [email protected]",
description="STORM: A language model-powered knowledge curation engine.",
Expand All @@ -34,6 +34,6 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires='>=3.9',
python_requires=">=3.9",
install_requires=requirements,
)

0 comments on commit 0e97efa

Please sign in to comment.