Skip to content

Commit 8891634

Browse files
chore: update of dependencies and minor chore (#173)
* Require Python 3.10 since that is the requirement for mplhep * Change the dependabot to run only monthly * Update pyupgrade to Python 3.10+
1 parent 8879f23 commit 8891634

4 files changed

Lines changed: 5 additions & 7 deletions

File tree

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ updates:
44
- package-ecosystem: "github-actions"
55
directory: "/"
66
schedule:
7-
interval: "weekly"
7+
interval: "monthly"

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ["3.8", "3.12", "3.13", "3.14"]
32+
python-version: ["3.10", "3.12", "3.13", "3.14"]
3333
runs-on: [ubuntu-latest, macos-15, windows-latest]
3434
include:
3535
- python-version: "3.12"

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repos:
3030
rev: v3.21.2
3131
hooks:
3232
- id: pyupgrade
33-
args: ["--py36-plus"]
33+
args: ["--py310-plus"]
3434

3535
- repo: https://github.com/asottile/setup-cfg-fmt
3636
rev: v3.2.0

setup.cfg

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ classifiers =
2020
Programming Language :: Python
2121
Programming Language :: Python :: 3
2222
Programming Language :: Python :: 3 :: Only
23-
Programming Language :: Python :: 3.8
24-
Programming Language :: Python :: 3.9
2523
Programming Language :: Python :: 3.10
2624
Programming Language :: Python :: 3.11
2725
Programming Language :: Python :: 3.12
@@ -31,7 +29,7 @@ classifiers =
3129

3230
[options]
3331
packages = find:
34-
python_requires = >=3.8
32+
python_requires = >=3.10
3533
include_package_data = True
3634
package_dir =
3735
=src
@@ -64,7 +62,7 @@ per-file-ignores =
6462

6563
[mypy]
6664
files = src
67-
python_version = 3.8
65+
python_version = 3.10
6866
warn_unused_configs = True
6967
disallow_any_generics = True
7068
disallow_subclassing_any = True

0 commit comments

Comments
 (0)