From 537e57a78f6e274a7e1265ad6e325eb5831f47dc Mon Sep 17 00:00:00 2001 From: aayushsingh2502 Date: Tue, 26 Aug 2025 18:18:30 +0530 Subject: [PATCH 1/4] pyproject file update --- pyproject.toml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2aeba35..9031d080 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,10 +24,19 @@ where = ["src"] [tool.setuptools.package-dir] "" = "src" +readme = "README.md" + +classifiers = [ + "Programming Language :: Python", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", +] + # Ruff configuration [tool.ruff] -target-version = "py310" -line-length = 88 +line-length = 80 exclude = [ ".bzr", ".direnv", @@ -95,3 +104,8 @@ show_error_codes = true [[tool.mypy.overrides]] module = "tests.*" disallow_untyped_defs = false + + +[project.urls] +"Homepage" = "https://github.com/hashicorp/python-tfe" +"Bug Tracker" = "https://github.com/hashicorp/python-tfe/issues" \ No newline at end of file From f520ca6531945476a216afa0ebb070d13f89dc6a Mon Sep 17 00:00:00 2001 From: aayushsingh2502 Date: Tue, 26 Aug 2025 18:33:48 +0530 Subject: [PATCH 2/4] pyproject fix --- pyproject.toml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9031d080..812af1b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,8 @@ dependencies = ["requests>=2.25.0"] dev = ["pytest>=7.0.0", "mypy>=1.17.1", "ruff>=0.12.10"] [project.urls] -Repository = "https://github.com/hashicorp/python-tfe" +"Repository" = "https://github.com/hashicorp/python-tfe" +"Bug Tracker" = "https://github.com/hashicorp/python-tfe/issues" [tool.setuptools.packages.find] where = ["src"] @@ -25,7 +26,6 @@ where = ["src"] "" = "src" readme = "README.md" - classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3.10", @@ -103,9 +103,4 @@ show_error_codes = true [[tool.mypy.overrides]] module = "tests.*" -disallow_untyped_defs = false - - -[project.urls] -"Homepage" = "https://github.com/hashicorp/python-tfe" -"Bug Tracker" = "https://github.com/hashicorp/python-tfe/issues" \ No newline at end of file +disallow_untyped_defs = false \ No newline at end of file From e7fb0b329323c76962d514578b125a710524879d Mon Sep 17 00:00:00 2001 From: aayushsingh2502 Date: Tue, 26 Aug 2025 18:39:17 +0530 Subject: [PATCH 3/4] pyproject code fix --- pyproject.toml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 812af1b8..3393c976 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,6 +11,13 @@ license = { text = "MPL-2.0" } authors = [{ name = "HashiCorp" }] requires-python = ">=3.10" dependencies = ["requests>=2.25.0"] +classifiers = [ + "Programming Language :: Python", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", +] [project.optional-dependencies] dev = ["pytest>=7.0.0", "mypy>=1.17.1", "ruff>=0.12.10"] @@ -25,15 +32,6 @@ where = ["src"] [tool.setuptools.package-dir] "" = "src" -readme = "README.md" -classifiers = [ - "Programming Language :: Python", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13", -] - # Ruff configuration [tool.ruff] line-length = 80 From 929b70b0894ffbff88873afd81124ecb76954388 Mon Sep 17 00:00:00 2001 From: aayushsingh2502 Date: Wed, 27 Aug 2025 18:01:03 +0530 Subject: [PATCH 4/4] toml file update --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3393c976..01eacc66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,8 @@ where = ["src"] # Ruff configuration [tool.ruff] -line-length = 80 +target-version = "py310" +line-length = 88 exclude = [ ".bzr", ".direnv",