Skip to content

Commit f8d2a33

Browse files
authored
Fix Classifiers (#10)
1 parent 421e3eb commit f8d2a33

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
- ".gitignore"
99
- ".prettierignore"
1010
- "MANIFEST.in"
11-
- "pyproject.toml"
1211
pull_request:
1312

1413
concurrency:
@@ -103,6 +102,11 @@ jobs:
103102
run: |
104103
bandit -c pyproject.toml -r src
105104
105+
- name: "validate-pyproject"
106+
if: ${{ !cancelled() }}
107+
run: |
108+
validate-pyproject pyproject.toml
109+
106110
- name: "prettier"
107111
if: ${{ !cancelled() }}
108112
run: |

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.13",
2020
"Programming Language :: Python :: 3.14",
2121
"Operating System :: OS Independent",
22-
"License :: License :: OSI Approved :: MIT License",
22+
"License :: OSI Approved :: MIT License",
2323
"Natural Language :: English",
2424
]
2525
license = { text = "MIT" }
@@ -41,6 +41,7 @@ dev = [
4141
"setuptools",
4242
"ty",
4343
"types-requests",
44+
"validate-pyproject[all]",
4445
]
4546

4647
[project.urls]

0 commit comments

Comments
 (0)