Skip to content

Commit

Permalink
Aligning version number to 0.98b on development
Browse files Browse the repository at this point in the history
* Adding py3.10 compatibility.
* Fix for python variants in conda build recipe.
  • Loading branch information
julesghub committed Jul 25, 2024
1 parent 51fade4 commit dd518a9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion conda/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
python:
- 3.10
- 3.11
- 3.12

mpi:
- mpich
- openmpi
- mpich
14 changes: 7 additions & 7 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "underworld3" %}
{% set version = "0.97b" %}
{% set version = "0.98b" %}

package:
name: "{{ name|lower }}"
Expand All @@ -8,14 +8,14 @@ package:
source:
git_url: https://github.com/underworldcode/underworld3
git_depth: 1
# git_tag: development
git_tag: development
# git_rev: 9e864dba48119c985cdaaec137945386b15505f9
# path: ..

build:
number: 0
string: mpi_{{ mpi }}
script: "{{ python }} -m pip install . -vv"
script: "python -m pip install . -vv"

requirements:

Expand All @@ -27,7 +27,7 @@ requirements:
- {{ mpi }}-mpicc
- {{ mpi }}-mpicxx
- {{ mpi }}
- {{ python }}
- python
- mpi4py
- petsc>=3.21.0
- petsc4py>=3.21.0
Expand All @@ -39,7 +39,7 @@ requirements:
- {{ mpi }}-mpicc
- {{ mpi }}-mpicxx
- {{ mpi }}
- {{ python }}
- python
- numpy
- mpi4py
- sympy
Expand All @@ -53,8 +53,8 @@ requirements:
- sympy
- pytest
- typing_extensions
- {{ python }}-xxhash
- {{ python }}-gmsh
- python-xxhash
- python-gmsh
- ipython
- nest-asyncio
- typeguard
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = underworld3
version = 0.9b
version = 0.98b

#[build_ext]
#inplace = True
Expand Down

0 comments on commit dd518a9

Please sign in to comment.