diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml index 5927f78..8879981 100644 --- a/.github/workflows/unit-testing.yml +++ b/.github/workflows/unit-testing.yml @@ -13,8 +13,7 @@ jobs: strategy: matrix: - python-version: [3.9, 3.10, 3.11, 3.12] - + python-version: [3.9, 3.12, 3.13] steps: - uses: actions/checkout@v4 diff --git a/setup.py b/setup.py index 9bd34a9..136fdc3 100644 --- a/setup.py +++ b/setup.py @@ -20,16 +20,15 @@ "Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering :: Atmospheric Science", - "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], keywords="radar weather meteorology dealiasing Doppler", # Optional packages=find_packages(exclude=["contrib", "docs", "tests"]), # Required - install_requires=["numpy", "numba", "arm_pyart"], # Optional + install_requires=["numpy", "numba", "arm_pyart", "pyodim"], # Optional project_urls={ # Optional "Bug Reports": "https://github.com/vlouf/dealias/issues", "Source": "https://github.com/vlouf/dealias/",