Skip to content

Commit e5237a5

Browse files
authored
Merge branch 'master' into fci
2 parents ddeb3ea + 30fa7a7 commit e5237a5

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: always()
2121
strategy:
2222
matrix:
23-
python-version: [3.7, 3.8, 3.9]
23+
python-version: [3.8, 3.9, '3.10']
2424
pip-packages:
2525
- "setuptools pip pytest pytest-cov coverage codecov boutdata xarray numpy>=1.16.0"
2626
fail-fast: false
@@ -53,7 +53,7 @@ jobs:
5353
if: always()
5454
strategy:
5555
matrix:
56-
python-version: [3.7, 3.8]
56+
python-version: [3.8]
5757
pip-packages:
5858
- "setuptools pip pytest pytest-cov coverage codecov boutdata==0.1.4 xarray==0.18.0 dask==2.10.0 numpy==1.18.0 natsort==5.5.0 matplotlib==3.1.1 animatplot==0.4.2 netcdf4==1.4.2 Pillow==7.2.0" # test with oldest supported version of packages. Note, using numpy==1.18.0 as a workaround because numpy==1.17.0 is not supported on Python-3.7, even though we should currently support numpy==1.17.0.
5959
fail-fast: false

setup.cfg

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author = Thomas Nicholas
55
author_email = [email protected]
66
description = Collect data from BOUT++ runs in python using xarray
77
license = Apache
8-
python_requires = >=3.7
8+
python_requires = >=3.8
99
long_description = file: README.md
1010
long_description_content_type = text/markdown
1111
classifiers =
@@ -16,9 +16,10 @@ classifiers =
1616
License :: OSI Approved :: Apache Software License
1717
Natural Language :: English
1818
Operating System :: POSIX :: Linux
19-
Programming Language :: Python :: 3.6
20-
Programming Language :: Python :: 3.7
2119
Programming Language :: Python :: 3.8
20+
Programming Language :: Python :: 3.9
21+
Programming Language :: Python :: 3.10
22+
Programming Language :: Python :: 3.11
2223
Topic :: Scientific/Engineering :: Visualization
2324

2425
[options]
@@ -27,7 +28,7 @@ setup_requires =
2728
setuptools_scm[toml]>=3.4
2829
setuptools_scm_git_archive
2930
install_requires =
30-
xarray>=0.18.0
31+
xarray>=0.18.0,!=2022.9.0,!=2022.10.0
3132
boutdata>=0.1.4
3233
dask[array]>=2.10.0
3334
gelidum>=0.5.3

0 commit comments

Comments
 (0)