From ae4f429e25d6149b99e4752d2a06edd11fe86cb7 Mon Sep 17 00:00:00 2001 From: Kevin Meagher <11620178+kjmeagher@users.noreply.github.com> Date: Thu, 5 Oct 2023 07:16:06 -0500 Subject: [PATCH] remove python 3.7 --- examples/plot_ehist.py | 2 +- pyproject.toml | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/examples/plot_ehist.py b/examples/plot_ehist.py index 1d584e9..20614fd 100755 --- a/examples/plot_ehist.py +++ b/examples/plot_ehist.py @@ -8,7 +8,7 @@ import numpy as np import pylab as plt -from scipy import stats # pylint: disable=import-error +from scipy import stats # pylint: disable=import-error from ehist import Hist1D as h1 diff --git a/pyproject.toml b/pyproject.toml index 7502e55..f360a85 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "flit_core.buildapi" [project] name = "ehist" -requires-python = "~=3.7" +requires-python = "~=3.8" authors = [{name = "Kevin Meagher"}] license = {file = "LICENSE"} classifiers = [ @@ -18,10 +18,11 @@ classifiers = [ "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: Linux", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Astronomy", "Topic :: Scientific/Engineering :: Physics", ] @@ -40,7 +41,7 @@ addopts = ["--cov"] [tool.black] line-length = 108 -target-version = ["py37"] +target-version = ["py38"] [tool.pylint.messages_control] disable = "C0103,C0104,C0114,C0115,C0116,W0603,R0902,R0903,R0912,R0913,R0914,W0201,W0622" @@ -61,7 +62,7 @@ ignore = [ "ERA001", # Found commented-out code ] line-length = 108 -target-version = "py37" +target-version = "py38" fixable = ["I"]