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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-latest", "windows-latest"]
python-version: [ "3.7", "3.8", "3.9", "3.10"]
python-version: [ "3.9", "3.10", "3.11"]
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Required dependencies for installing and testing Uxarray
The following packages should be installed (in your active conda
environment)::

- Python 3.7+
- Python 3.9+
- `pytest <https://docs.pytest.org/en/stable/>`_ (For tests only)
- `xarray <http://xarray.pydata.org/en/stable/>`_

Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
xarray
numpy<1.24
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def version():
version=version(),
maintainer='UXARRAY',
maintainer_email='',
python_requires='>=3.7',
python_requires='>=3.9',
install_requires=requirements,
description=
"""Unstructured grid model reading and recognizing with xarray.""",
Expand All @@ -34,9 +34,9 @@ def version():
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'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',
'Topic :: Scientific/Engineering',
],
include_package_data=True,
Expand Down