Skip to content

Commit 4e1e893

Browse files
committed
2 parents 3a3144f + 979e626 commit 4e1e893

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ env:
2828

2929
# Suppress noisy pip warnings
3030
PIP_DISABLE_PIP_VERSION_CHECK: 'true'
31-
PIP_NO_PYTHON_VERSION_WARNING: 'true'
3231
PIP_NO_WARN_SCRIPT_LOCATION: 'true'
3332

3433
# Ensure tests can sense settings about the environment

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.8.0
3+
rev: v0.9.9
44
hooks:
55
- id: ruff
66
args: [--fix, --unsafe-fixes]

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ readme = "README.rst"
1414
classifiers = [
1515
"Development Status :: 5 - Production/Stable",
1616
"Intended Audience :: Developers",
17-
"License :: OSI Approved :: MIT License",
1817
"Programming Language :: Python :: 3",
1918
"Programming Language :: Python :: 3 :: Only",
2019
"Topic :: Software Development :: Libraries :: Python Modules",

ruff.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# extend pyproject.toml for requires-python (workaround astral-sh/ruff#10299)
2-
extend = "pyproject.toml"
3-
41
exclude = [
52
"**/_vendor",
63
"setuptools/_distutils",
@@ -14,7 +11,6 @@ extend-select = [
1411
"C901", # complex-structure
1512
"I", # isort
1613
"PERF401", # manual-list-comprehension
17-
"W", # pycodestyle Warning
1814

1915
# Ensure modern type annotation syntax and best practices
2016
# Not including those covered by type-checkers or exclusive to Python 3.11+
@@ -57,8 +53,6 @@ ignore = [
5753
"Q003",
5854
"COM812",
5955
"COM819",
60-
"ISC001",
61-
"ISC002",
6256

6357
# local
6458
"PERF203", # try-except-in-loop, micro-optimisation with many false-positive. Worth checking but don't block CI

0 commit comments

Comments
 (0)