diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 667be8019..2f74f6ecb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index c2adbc50a..b8df59e38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "particula" description = "a simple, fast, and powerful particle simulator" readme = "README.md" -requires-python = ">=3.9,<3.12" +requires-python = ">=3.9" license = {file = "LICENSE"} authors = [ {name = "aktwo", email="aktwo@users.noreply.github.com"}, @@ -22,7 +22,7 @@ keywords = [ ] dependencies = [ - "numpy", "scipy==1.12.0", "pint", "hypersolver==0.0.8", "pandas", + "numpy", "scipy<1.14.0", "pint", "hypersolver==0.0.8", "pandas", "netCDF4", "shapely", "PyMieScatt", "tqdm", "pytz", "matplotlib", "torch", "scikit-learn" ]