Skip to content

Commit 1bbc714

Browse files
committed
build: allow pyparsing 3.x
AOSC OS currently ships pyparsing v3.2.1 which breaks the original requirement, and in practice, it does not break anything. Thus let's accept pyparsing 3.x.
1 parent f1ca863 commit 1bbc714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __str__(self):
3838
url="https://github.com/AOSC-Dev/acbs",
3939
packages=find_packages(),
4040
install_requires=[
41-
"pyparsing>=2.4,<3"
41+
"pyparsing>=2.4,<4"
4242
],
4343
extras_require={
4444
"Build logging": ["pexpect"]

0 commit comments

Comments
 (0)