From 1129b4e8e79c091246e7abd3bdb85efc7aa7819d Mon Sep 17 00:00:00 2001 From: hezz Date: Tue, 15 Aug 2023 18:14:50 +0800 Subject: [PATCH 1/2] fix pyproject.toml bug --- pyproject.toml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ed7c2769e..135194f5c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,21 +1,3 @@ -[project] -name = "chatgit" -version = "0.1.0" -description = "chatgit is an LLM model-based open source project competition analysis research project, it can help you find the most suitable open source project for your needs" -authors = [ - {name = "hezz", email = "hezhaozhaog@gmail.com"}, -] -dependencies = [ - "requests>=2.31.0", -] -requires-python = ">=3.11" -readme = "README.md" -license = {text = "Apache"} - -[build-system] -requires = ["setuptools>=61", "wheel"] -build-backend = "setuptools.build_meta" - [tool.black] line-length = 119 target-version = ['py39'] From 7895776f44e1fc2b2896d1b9ed6f040f316014a2 Mon Sep 17 00:00:00 2001 From: hezz Date: Tue, 15 Aug 2023 18:33:58 +0800 Subject: [PATCH 2/2] fix pyproject.toml bug --- .pre-commit-config.yaml | 3 ++- pyproject.toml => ruff.toml | 13 +------------ 2 files changed, 3 insertions(+), 13 deletions(-) rename pyproject.toml => ruff.toml (79%) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6670d22e2..b1892a709 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,4 +23,5 @@ repos: - repo: https://github.com/psf/black rev: 23.3.0 hooks: - - id: black \ No newline at end of file + - id: black + args: ['--line-length', '120'] \ No newline at end of file diff --git a/pyproject.toml b/ruff.toml similarity index 79% rename from pyproject.toml rename to ruff.toml index 135194f5c..7835865e0 100644 --- a/pyproject.toml +++ b/ruff.toml @@ -1,10 +1,3 @@ -[tool.black] -line-length = 119 -target-version = ['py39'] - - -[tool.ruff] -# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default. select = ["E", "F"] ignore = ["E501", "E712", "E722", "F821", "E731"] @@ -44,8 +37,4 @@ line-length = 119 dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" # Assume Python 3.9 -target-version = "py39" - -[tool.ruff.mccabe] -# Unlike Flake8, default to a complexity level of 10. -max-complexity = 10 \ No newline at end of file +target-version = "py39" \ No newline at end of file