Skip to content

Commit

Permalink
Removed Python 3.8, added 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
lpilz committed Oct 7, 2024
1 parent 362e765 commit 59a0bcc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 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.9", "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 pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.black]
line-length = 100
target-version = ['py38']
target-version = ['py39', 'py310', 'py311', 'py312']
skip-string-normalization = true


Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@
'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 +30,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.9',
maintainer='xWRF Developers',
classifiers=CLASSIFIERS,
url='https://xwrf.readthedocs.io',
Expand Down

0 comments on commit 59a0bcc

Please sign in to comment.