Skip to content
This repository has been archived by the owner on Jun 4, 2022. It is now read-only.

switch to libprotobuf #19

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all 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 .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ os: osx
osx_image: xcode6.4

env:
matrix:

- CONDA_PY=36
global:
# The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml.
- secure: "G9eKo9e//qr6/NU/bEZLzIaacNOfjA7VuVqNQ6AUdWZJ2D4H0LlIHJbnPh9XA9BlUVWOziuR4nEILjDTT99/ww3XmmfTjJNjHIHrr5xQB7tQtenr6dvoeAXqXXj9qA1T9FwEanigExm8WYybTJ/MgKcNHVy9g0egg+/EC/ka3RCFSJfkNGZ8Vp3ctMbYrICbGhXkANaxyE7yDkQU3BljDjBV/hH1mNMCS+rWhvYZ7sQYcy9ceNSrmzXmQOUxXj2zGVMIYuSa3HLoUrzrbRgO4o2190oGOW1JEfi8ev+yaTt4Yi1XbO6QKsz/Eo8hNB6cCQpvesp6isaBme6dKCrwyPmr83la7pfr4vV+rRHoue8th802YlsMnTaprk9I9ndRAbfCyurV8B7cIzfZRBmbJ+DzHmpW3hvREpM376VF/Z69p4cU6+mOY9BdLRpbUglCOVS68+LkjlGhb2zCsteOi9Sy9e6FQlkNIPZLHHWqtF9ETmAUN/sP6k7CFDAZymdv9OqZ79sRY3mbVOXhp7b623KNM5V5eziEaUyIasTE5dNv81Q2cGBa5fBqA4raa/kVH3jLiMnxoO8kWqXrYsWAflJeCjRyIiHniCwJpVjlaTt74zTITlLOdigcEyojIFdGhCPJ3W2cqwHFeQU1dWEMSKn6LKHF50Uh6whj1PQXp8g="
Expand Down
14 changes: 7 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,24 @@ install:

# Add path, activate `conda` and update conda.
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: conda update --yes --quiet conda
- cmd: conda.exe update --yes --quiet conda

- cmd: set PYTHONUNBUFFERED=1

# Add our channels.
- cmd: conda config --set show_channel_urls true
- cmd: conda config --remove channels defaults
- cmd: conda config --add channels defaults
- cmd: conda config --add channels conda-forge
- cmd: conda.exe config --set show_channel_urls true
- cmd: conda.exe config --remove channels defaults
- cmd: conda.exe config --add channels defaults
- cmd: conda.exe config --add channels conda-forge

# Configure the VM.
- cmd: conda install -n root --quiet --yes conda-forge-build-setup
- cmd: conda.exe install -n root --quiet --yes conda-forge-build-setup
- cmd: run_conda_forge_build_setup

# Skip .NET project specific build phase.
build: off

test_script:
- conda build recipe --quiet
- conda.exe build recipe --quiet
deploy_script:
- cmd: upload_or_check_non_existence .\recipe conda-forge --channel=main
6 changes: 3 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% set commit = 'shogun_' + version %}
{% set sha256 = "75f4d555efe06eaa7c4c12a1dc942f6e4d41a8ed495777a790b9bd9df936c19c" %}

{% set build = 0 %}
{% set build = 1 %}

# Shogun doesn't produce a single tarball you can build from anymore;
# need to get the gpl-shogun tarball too. Remember to update this when updating
Expand Down Expand Up @@ -84,10 +84,10 @@ requirements:
- glpk 4.61|4.62
- hdf5 1.10.1
- json-c 0.12|0.12.* # [not win]
- libprotobuf 3.5.*
- libxml2 2.9.*
- lzo 2.*
- openblas 0.2.20|0.2.20.* # [not win]
- protobuf 3.4.* # [not win] # conda-forge protobuf doesn't have C++ version
- rxcpp 4.0.0
- snappy 1.1.6|1.1.7
- xz 5.2.*
Expand All @@ -100,10 +100,10 @@ requirements:
- glpk 4.61|4.62
- hdf5 1.10.1
- json-c 0.12|0.12.* # [not win]
- libprotobuf 3.5.*
- libxml2 2.9.*
- lzo 2.*
- openblas 0.2.20|0.2.20.* # [not win]
- protobuf 3.4.*
- snappy 1.1.6|1.1.7
- xz 5.2.*
- zlib 1.2.11
Expand Down