Skip to content

Commit 1f35ce4

Browse files
CopilotDerThorsten
authored andcommitted
Changes before error encountered
Co-authored-by: DerThorsten <904752+DerThorsten@users.noreply.github.com>
1 parent 41ec05c commit 1f35ce4

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
context:
2+
name: rebound
3+
version: 4.4.10
4+
5+
package:
6+
name: ${{ name }}
7+
version: ${{ version }}
8+
9+
source:
10+
- url: https://files.pythonhosted.org/packages/85/8d/6fac961b4fc5303e362a07e74477e9fc41f62b419aa32250e2e7d3dc03f9/rebound-${{ version }}.tar.gz
11+
sha256: d8ed4ad8ae33e5a8454be4965033b8a154602cd09776ed17c193aa7c55c65819
12+
13+
build:
14+
number: 0
15+
script: ${{ PYTHON }} -m pip install . ${{ PIP_ARGS }}
16+
17+
requirements:
18+
build:
19+
- ${{ compiler('c') }}
20+
- ${{ compiler('cxx') }}
21+
- cross-python_${{ target_platform }}
22+
- python
23+
- pip
24+
- setuptools
25+
host:
26+
- python
27+
run:
28+
- python
29+
30+
tests:
31+
- script: pytester
32+
files:
33+
recipe:
34+
- test_import_rebound.py
35+
requirements:
36+
build:
37+
- pytester
38+
run:
39+
- pytester-run
40+
41+
about:
42+
license: GPL-3.0-or-later
43+
license_file: LICENSE
44+
summary: An open-source multi-purpose N-body code
45+
homepage: https://github.com/hannorein/rebound/
46+
documentation: https://rebound.readthedocs.io/
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def test_import_rebound():
2+
import rebound

0 commit comments

Comments
 (0)