diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index eb1f27c..10e7e3a 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -25,7 +25,7 @@ jobs: strategy: 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 diff --git a/pyproject.toml b/pyproject.toml index 1de47e6..cd3183a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 :: Office/Business :: Financial :: Accounting", ] @@ -51,7 +52,7 @@ classifiers = [ dependencies = [ "market-prices", "exchange-calendars", - "numpy<2", + "numpy", "pandas", "Jinja2", "matplotlib", @@ -102,4 +103,4 @@ write_to = "src/market_analy/_version.py" [tool.black] line-length = 88 -target-version = ['py39', 'py310', 'py311'] +target-version = ['py39', 'py310', 'py311', 'py312']