Skip to content

Commit

Permalink
Bump upper supported python version to 3.12
Browse files Browse the repository at this point in the history
Changes upper python version of test matrix to 3.12.
  • Loading branch information
maread99 committed Jun 25, 2024
1 parent 2d69489 commit 7de66b2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.11"]
python-version: ["3.9", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion etc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ korean-lunar-calendar==0.3.1
# via exchange-calendars
lxml==4.9.4
# via yahooquery
numpy==1.26.4
numpy==2.0.0
# via
# exchange-calendars
# market-prices (pyproject.toml)
Expand Down
2 changes: 1 addition & 1 deletion etc/requirements_dependabot/requirements_tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ndindex==1.8
# via blosc2
numexpr==2.10.1
# via tables
numpy==1.26.4
numpy==2.0.0
# via
# blosc2
# exchange-calendars
Expand Down
2 changes: 1 addition & 1 deletion etc/requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ nodeenv==1.9.1
# via pre-commit
numexpr==2.10.1
# via tables
numpy==1.26.4
numpy==2.0.0
# via
# blosc2
# exchange-calendars
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Education",
"Topic :: Office/Business :: Financial",
Expand All @@ -52,7 +53,7 @@ classifiers = [

dependencies = [
"exchange_calendars",
"numpy<2",
"numpy",
"pandas",
"tzdata",
"yahooquery",
Expand Down Expand Up @@ -98,4 +99,4 @@ write_to = "src/market_prices/_version.py"

[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311']
target-version = ['py39', 'py310', 'py311', 'py312']

0 comments on commit 7de66b2

Please sign in to comment.