Skip to content

Commit 9463416

Browse files
committed
CI: Pin numpy
Also run pyupgrade for 39
1 parent 2e4b674 commit 9463416

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pandas_datareader/yahoo/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ def _try_parse_dates(self, year, month, expiry):
479479
if expiry.year == year and expiry.month == month
480480
]
481481
if len(expiry) == 0:
482-
raise ValueError("No expiries available in {}-{}".format(year, month))
482+
raise ValueError(f"No expiries available in {year}-{month}")
483483

484484
return expiry
485485

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "pandas-datareader"
77
dynamic = ["version", "dependencies", "readme"]
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.9"
99
license = {file = "LICENSE.md"}
1010
description = "Pandas-compatible data readers. Formerly a component of pandas."
1111
authors = [
@@ -20,11 +20,11 @@ classifiers =[
2020
"Programming Language :: Python",
2121
"Programming Language :: Python :: 3",
2222
"Programming Language :: Python :: 3 :: Only",
23-
"Programming Language :: Python :: 3.8",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
2726
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2828
"Topic :: Scientific/Engineering"
2929
]
3030

0 commit comments

Comments
 (0)