Skip to content

Commit

Permalink
Merge branch 'main' into patches
Browse files Browse the repository at this point in the history
  • Loading branch information
lpilz authored Oct 10, 2024
2 parents 94612a3 + 7631f6c commit bbdcefc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: set up conda environment
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: 3.8
python-version: 3.10

- name: Install dependencies
run: |
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: 3.8
python-version: 3.10
- uses: actions/download-artifact@v4
with:
name: releases
Expand Down
2 changes: 1 addition & 1 deletion ci/environment-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- pip
- pooch
- pydantic
- python=3.9
- python=3.10
- sphinx-autobuild
- sphinx-autosummary-accessors
- sphinx-comments
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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',
'Topic :: Scientific/Engineering',
]

Expand All @@ -29,7 +29,7 @@
description='A lightweight interface for working with the Weather Research and Forecasting (WRF) model output in Xarray.',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.8',
python_requires='>=3.10',
maintainer='xWRF Developers',
classifiers=CLASSIFIERS,
url='https://xwrf.readthedocs.io',
Expand Down

0 comments on commit bbdcefc

Please sign in to comment.