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

Add mypy dependency to build requirements in meta.yaml #15

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
echo "OS is:"
echo "`uname`"

# Tudat dependencies
conda install numpy scipy matplotlib tqdm -y
geoffreygarrett marked this conversation as resolved.
Show resolved Hide resolved

if [ "`uname`" = "Linux" ]
then
conda install jinja2 pydantic=1.10.9 pyyaml numpydoc -y
Expand Down
3 changes: 2 additions & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% set name = "tudatpy" %}
{% set version = "0.8.0.dev9" %}
{% set build = "0" %}
{% set git_rev = "v0.8.0.dev9" %}
{% set git_rev = "c51a1b5490df82bec17c3a12108c3f304412a539" %}
geoffreygarrett marked this conversation as resolved.
Show resolved Hide resolved

package:
name: {{ name }}
Expand Down Expand Up @@ -45,6 +45,7 @@ requirements:
- pybind11 # [build_platform != target_platform]
- make # [unix]
- boost-cpp {{ boost_cpp }}
- mypy


host:
Expand Down
Loading