Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import re
from setuptools import find_packages, setup
import sys

from setuptools import find_packages, setup


def _read_long_description():
try:
Expand Down Expand Up @@ -34,7 +35,7 @@ def _read_long_description():
packages=find_packages(exclude=("tests",)),
license="MIT",
install_requires=[
"click>=7,<8",
"click>=7,<9",
"click_log>=0.3,<1",
"gitpython>=3.0.8,<4",
"invoke>=1.4.1,<2",
Expand All @@ -43,7 +44,7 @@ def _read_long_description():
"requests>=2.25,<3",
"wheel",
"python-gitlab>=1.10,<3",
"tomlkit==0.7.0",
"tomlkit==0.7.2",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI this was pined to 0.7.0 as it seems it was causing a bug where the pyproject.toml was being wiped.

Should probably have left a comment or even better write a test reproducing the problem... 😞

"dotty-dict>=1.3.0,<2",
],
extras_require={
Expand Down