Skip to content

Commit

Permalink
remove python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
kjmeagher committed Oct 5, 2023
1 parent 560ba7c commit ae4f429
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/plot_ehist.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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",
]
Expand All @@ -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"
Expand All @@ -61,7 +62,7 @@ ignore = [
"ERA001", # Found commented-out code
]
line-length = 108
target-version = "py37"
target-version = "py38"
fixable = ["I"]


Expand Down

0 comments on commit ae4f429

Please sign in to comment.