File tree Expand file tree Collapse file tree 5 files changed +6
-34
lines changed
Expand file tree Collapse file tree 5 files changed +6
-34
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,10 @@ jobs:
1515 fail-fast : false
1616 matrix :
1717 python-version :
18- - " 3.10"
1918 - " 3.11"
2019 - " 3.12"
2120 - " 3.13"
22- - " pypy-3.10 "
21+ - " pypy-3.11 "
2322 steps :
2423 - uses : actions/checkout@v5
2524 with :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# The MIT License
22#
33# Copyright (c) 2008 Bob Farrell
4- # Copyright (c) 2012-2021 Sebastian Ramacher
4+ # Copyright (c) 2012-2025 Sebastian Ramacher
55#
66# Permission is hereby granted, free of charge, to any person obtaining a copy
77# of this software and associated documentation files (the "Software"), to deal
3838from pathlib import Path
3939from collections .abc import Callable
4040from types import ModuleType
41+ from typing import Never
4142
4243from . import __version__ , __copyright__
4344from .config import default_config_path , Config
4445from .translations import _
45- from ._typing_compat import Never
4646
4747logger = logging .getLogger (__name__ )
4848
@@ -52,7 +52,7 @@ class ArgumentParserFailed(ValueError):
5252
5353
5454class RaisingArgumentParser (argparse .ArgumentParser ):
55- def error (self , msg : str ) -> Never :
55+ def error (self , message : str ) -> Never :
5656 raise ArgumentParserFailed ()
5757
5858
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[tool .black ]
66line-length = 80
7- target_version = [" py310 " ]
7+ target_version = [" py311 " ]
88include = ' \.pyi?$'
99exclude = '''
1010/(
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ classifiers =
1515 Programming Language :: Python :: 3
1616
1717[options]
18- python_requires = >=3.10
18+ python_requires = >=3.11
1919packages =
2020 bpython
2121 bpython.curtsiesfrontend
You can’t perform that action at this time.
0 commit comments