Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
finsberg committed Jun 17, 2020
1 parent 8ad3e14 commit 7d4fc27
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
13 changes: 6 additions & 7 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{% set name = "ldrb" %}
{% set version = "2019.1.1" %}
{% set sha256="b31aa68360a08f63f73bf6e008d92507f0ae31bc630fad94e0ed5bb3a82ea7e0" %}
{% set version = "2019.3" %}

package:
name: {{ name|lower }}
name: ldrb
version: {{ version }}

source:
url: https://github.com/finsberg/ldrb/archive/v{{ version }}.tar.gz
sha256: {{ sha256 }}
sha256: fb5b15672b813d7922dfa42c87a116c2ed6632c2f105f0856794f061e7ddd6fe

build:
number: 0
script: python setup.py install
skip: True # [win or py<36]
noarch: python
script: "python -m pip install . -vv"

requirements:
build:
Expand All @@ -28,7 +27,7 @@ requirements:
- quaternion
- fenics
- numba
- scipy
- scipy
test:
imports:
- ldrb
Expand Down
1 change: 0 additions & 1 deletion ldrb/ldrb.py
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,6 @@ def scalar_laplacians(mesh, markers=None, ffun=None):
# linear_solver="gmres",
# )
# )
# solver_param = {}
solver_param = dict(
solver_parameters=dict(
linear_solver="superlu_dist",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
URL = "https://github.com/finsberg/ldrb"
EMAIL = "[email protected]"
AUTHOR = "Henrik Finsberg"
VERSION = "2019.2"
VERSION = "2019.3"

# What packages are required for this module to be executed?
REQUIRED = ["h5py", "numba", "numpy-quaternion", "scipy", "numpy"]
Expand Down

0 comments on commit 7d4fc27

Please sign in to comment.