Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added juliacall as a package #20379

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
43 changes: 43 additions & 0 deletions recipes/juliacall/meta.yaml
@@ -0,0 +1,43 @@
{% set name = "juliacall" %}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
{% set name = "juliacall" %}
{% set name = "pyjuliacall" %}

{% set version = "0.9.6" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/juliacall-{{ version }}.tar.gz
sha256: 055c19227df0919aa3f080c75fba264b0554b2512e0983eada0077c569f45e08

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0

requirements:
host:
- pip
- python >=3.7
- setuptools >=42
run:
- python >=3.7
- juliapkg >=0.1.8,<0.2.dev0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- juliapkg >=0.1.8,<0.2.dev0
- pyjuliapkg >=0.1.8,<0.2.dev0


test:
imports:
- juliacall
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- juliacall
- pyjuliacall

commands:
- pip check
requires:
- pip

about:
home: http://github.com/cjdoris/PythonCall.jl
doc_url: https://cjdoris.github.io/PythonCall.jl/stable/
summary: Julia and Python in seamless harmony
license: MIT
license_file: LICENSE

extra:
recipe-maintainers:
- thewchan