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/pylag-package-conda-linux-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.11"]
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylag-package-conda-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs_environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- conda-forge
- JimClark
dependencies:
- python=3.11
- python=3.12
- pylag
- matplotlib
- cartopy
Expand Down
1 change: 1 addition & 0 deletions conda/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
python:
- 3.11
- 3.12
- 3.13

numpy:
- 2.3
9 changes: 5 additions & 4 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{% set name = "PyLag" %}
{% set version = "0.8.0" %}
{% set version = load_setup_py_data().get('version') %}

package:
name: "{{ name|lower }}"
Expand All @@ -18,17 +19,17 @@ requirements:
- pip
- openmpi
- mpi4py
- numpy>=1.20
- cython>=0.29
- numpy>=2.0
- cython>=3.0
build:
- python
- {{ compiler('cxx') }}
run:
- python
- mpi4py
- numpy>=1.20
- numpy>=2.0
- scipy>=1.4.1
- cython>=0.29
- cython>=3.0
- progressbar
- natsort
- netCDF4
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ channels:
dependencies:
- python
- mpi4py
- numpy>=1.20
- numpy>=2.0
- scipy>=1.4.1
- cython>=0.29
- cython>=3.0
- progressbar
- natsort
- netCDF4
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"cython>=0.29",
"numpy>=1.20",
"cython>=3.0",
"numpy>=2.0",
"scipy>=1.4.1",
"netCDF4",
"cftime>=1.1",
Expand All @@ -35,11 +35,11 @@ classifiers = [
'Programming Language :: C++',
'Programming Language :: Cython',
'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',
'Programming Language :: Python :: 3.13',
'Operating System :: UNIX',
]

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

# For running PyLag
mpi4py
numpy>=1.18
numpy>=2.0
scipy>=1.4.1
cython>=0.29
cython>=3.0
progressbar
natsort
netCDF4
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
MAJOR = 0
MINOR = 8
PATCH = 0
ISRELEASED = True
ISRELEASED = False
VERSION = '{}.{}.{}'.format(MAJOR, MINOR, PATCH)

build_type = 'prod'
Expand Down
Loading