Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, windows-latest, macos-12]
steps:
- uses: actions/checkout@v4
Expand All @@ -26,7 +26,7 @@ jobs:
run: |
conda create --name TEST python=${{ matrix.python-version }} numpy cython pip pytest wheel pyproj eccodes --strict-channel-priority
source activate TEST
pip install -e . --no-deps --force-reinstall
python -m pip install -e . --no-deps --force-reinstall
conda info --all
conda list

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [windows-latest, macos-latest]
platform: [x64, x32]
exclude:
Expand All @@ -32,7 +32,7 @@ jobs:
run: |
conda create --name TEST python=${{ matrix.python-version }} numpy cython pip pytest wheel pyproj eccodes --strict-channel-priority
source activate TEST
pip install -e . --no-deps --force-reinstall
python -m pip install -e . --no-deps --force-reinstall
conda info --all
conda list

Expand Down
21 changes: 13 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
PROJ_LIB: /usr/share/proj
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.13"]
steps:

- uses: actions/checkout@v4
Expand All @@ -31,18 +31,23 @@ jobs:
- name: Install some dependencies via pip
run: |
# Install pyspharm using a few tricks
pip install numpy setuptools wheel
FFLAGS="-fallow-argument-mismatch" pip install --no-use-pep517 pyspharm
python -m pip install numpy setuptools wheel build meson-python
#FFLAGS="-fallow-argument-mismatch" python -m pip install --no-use-pep517 pyspharm
git clone https://github.com/jswhit/pyspharm
cd pyspharm
python -m build .
python -m pip install dist/*whl
cd ..
# for later building/checking
pip install build twine
pip install check-manifest
python -m pip install build twine
python -m pip install check-manifest
# below here only needed for mpl/cartopy based tests
pip install pytest-mpl
pip install cartopy
python -m pip install pytest-mpl
python -m pip install cartopy

- name: Install pygrib
run: |
pip install -e .
python -m pip install -e .

- name: Test
run: |
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,16 @@ readme = "README.md"
authors = [
{name = "Jeff Whitaker", email = "[email protected]"},
]
requires-python = ">=3.7"
requires-python = ">=3.9"
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
Loading