File tree 2 files changed +28
-20
lines changed
2 files changed +28
-20
lines changed Original file line number Diff line number Diff line change 1
- {% set version = "0.0.7 " %}
2
- # {% set sha256 = "2debe8a5fc000668edbf1b16bdc8de6e8830047bc3f3ffcb2a5636c16137b004 " %}
1
+ {% set name = "dolang " %}
2
+ {% set version = "0.0.20 " %}
3
3
4
4
package :
5
5
name : dolang
6
- version : {{ version }}
6
+ version : 0.0.20
7
7
8
8
source :
9
9
path : ../
10
- # fn: master.tar.gz
11
- # url: https://github.com/EconForge/dolang.py/archive/master.tar.gz
12
-
13
- # url: https://github.com/EconForge/dolang.py/archive/v{{ version }}.tar.gz
14
- # sha256: {{ sha256 }}
15
10
16
11
build :
17
- script : pip install --no-deps .
18
- number : 0
12
+ number : 2
13
+ noarch : python
14
+ script : " {{ PYTHON }} -m pip install . -vv"
15
+ always_include_files :
16
+ - dolang/grammar.lark
19
17
20
18
requirements :
21
- build :
22
- - python
23
- - setuptools
19
+ host :
20
+ - pip
21
+ - python >=3.8,<3.11
22
+ - poetry
24
23
run :
25
- - python >= 3.6
26
- - python
27
- - numba
28
- - sympy
24
+ # numba is now an optional dependency
25
+ # - numba >=0.57.1
26
+ - numpy >=1.22.2
27
+ - python >=3.8, <3.12
28
+ - sympy >=1.11.1
29
+ - pyyaml >=6.0
30
+ - lark >=1.1.2
29
31
30
32
test :
31
33
imports :
32
34
- dolang
35
+ - dolang.tests
33
36
34
37
about :
35
- home : https://github.com/econforge/Dolang
36
- license : BSD 2-Clause
37
- summary : ' Dolo Modeling Language'
38
+ home : https://github.com/EconForge/dolang.py
39
+ license : BSD-2-Clause
40
+ license_family : BSD
41
+ # in the future, don't include the license file
42
+ # as it will be part of the source distribution
43
+ # cf: https://github.com/EconForge/dolang.py/issues/3
44
+ summary : Dolo Modeling Language
38
45
39
46
extra :
40
47
recipe-maintainers :
Original file line number Diff line number Diff line change 34
34
35
35
grammar_0 = open (DATA_PATH , "rt" , encoding = "utf-8" ).read ()
36
36
37
+ # from .grammar_lark import grammar_0
37
38
38
39
from lark .lark import Lark
39
40
You can’t perform that action at this time.
0 commit comments