aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2023-09-08 10:51:08 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2023-09-08 10:51:08 -0400
commita31a92ff18a0df3b776a2a96d54a87bed65a23de (patch)
treebb462554fc2001d5f0cb46d9272dc380d53e13d9
parenta7ba6f037db6d43cee2dad187dd585cf7137e8c5 (diff)
downloadbugspray-a31a92ff18a0df3b776a2a96d54a87bed65a23de.tar.gz
Appease the gods of pip install
Not sure if this is what it's looking for, but attempt to fix the "PEP 508" error. Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r--pyproject.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 1c941cd..37bd94a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -21,12 +21,12 @@ classifiers = [
'Topic :: Software Development :: Version Control :: Git',
]
dependencies = [
- 'b4 >= 0.12.2,<1.0',
- 'Pygments >= 2.14.0,<3.0',
+ 'b4 >= 0.12.2, < 1.0',
+ 'Pygments >= 2.14.0, < 3.0',
'requests >= 2.28',
- 'sqlalchemy >= 1.4,<2.0',
+ 'sqlalchemy >= 1.4, < 2.0',
# Conditional to python version
- 'tomli >= 2.0; python_version < 3.11',
+ 'tomli >= 2.0; python_version < "3.11"',
]
#optional-dependencies = [
# 'PyMySQL'