Giter Site home page Giter Site logo

bas-rustenburg / conda-recipes Goto Github PK

View Code? Open in Web Editor NEW

This project forked from omnia-md/conda-recipes

0.0 1.0 0.0 1.13 MB

conda build recipes for the Omnia project

Home Page: http://omnia.md

License: MIT License

Batchfile 10.50% Shell 15.88% Python 23.53% PowerShell 1.67% C++ 0.16% C 48.26%

conda-recipes's Introduction

  • Travis-CI linuxand osx builds Travis Build Status
  • Appveyor-CI win builds AppVeyor Build status

omnia-md/conda-recipes

The recipes here create conda packages for scientific and numerical software components associated with the omnia project. The packages built from these recipes are shared with the community on anaconda.org. These packages also depend on the conda-forge conda channel.

Installing packages from omnia

To install a package (mdtraj for example)

# Add conda-forge and omnia to your channel list, one time action
conda config --add channels omnia --add channels conda-forge
# Install the 'mdtraj' a package
conda install mdtraj

To install a package in one line:

# channels searched in order they are added here
conda install -c conda-forge -c omnia mdtraj

When setting up the configuration through conda config, the channels are added to the top of the search priority sequentially. So conda config --add channels omnia --add channels conda-forge first adds omnia to the top of the list, then adds conda-forge on top of that, giving conda-forge the highest priority.

When temporarily searching through channels with conda install, the channels are prioritized in the order they are provided. So conda install -c conda-forge -c omnia prioritizes conda-forge first, then omnia.

Migration to conda-forge

The Omnia project has started migrating to conda-forge. New packages that do not depend on OpenMM should be developed on conda-forge and existing packages which do not depend on OpenMM should start migrating if possible.

Planed Migration Stages

  1. Update build image to CentOS 6 from CentOS 5

    The base Docker image for linux builds will be updated to CentOS 6 with its new glibc. The base image is the conda-forge anvil, with some custom addons to include things like the AMD SDK, TexLive, and CUDA for GPU builds. The updated version will ensure packages can work on the conda-forge platform which is CentOS 6 based.

  2. (Current) For packages that appear in conda-forge, remove the corresponding recipes in omnia

    We want to minimize the amount of work we have to do as maintainers. To that end, we will stop building things which freely appear on conda-forge and maintained by someone other than us! For reproducibility purposes, we will keep our previously compiled versions, but they will not longer be updated.

    • Developers: if you want users to still exclusivley use the omnia conda channel, please see the Copying from conda-forge section below
  3. Allow recipes that do not depend on OpenMM to migrate from omnia to conda-forge

    • Packages which do not depend on OpenMM and can be run on CPUs only should start migrating over to conda-forge in preparation for the total migration.
    • Packages which can compile with just the conda-forge linux-anvil should also start migrating.
    • We highly encourage devs of individual packages to start migrating now.
    • Once a package is on conda-forge, it should no longer depend packages from omnia!
  4. Determine the appropriate way to build packages which require more than the conda-forge linux-anvil can provide

    • The conda-forge linux-anvil does not support some things such as some LaTeX packages, AMD SDK, and CUDA files.
    • We will need to reach out to the conda-forge people to see what the best course of action is
  5. Migrate OpenMM to conda-forge

    • This requires us to identify the best way to add CUDA and AMD APP SDK developer tools to the conda-forge linux-anvil docker image. We have some ideas, but no concrete solution yet.
  6. Move the remainder of packages to conda-forge

    • Also ensure that all former omnia packages can be installed without the omnia conda channel
  7. Change this repo into an archive for reproducibility.

How to migrate to conda-forge (for existing packages)

PLACEHOLDER

Copying from Conda Forge

It can be a bit confusing to rely on two conda channels where the order they are specified in changes which version of packages are installed. During the migration to conda-forge, developers can copy their binary tarballs from conda-forge to the omnia channel using the Anaconda Cloud API, allowing users to rely only on the omnia channel. There are a couple conditions for this though:

  • Packages still built in omnia will search for dependencies in conda-forge then omnia, in that order
  • Your package should not depend on packages which only exist in omnia
  • You the developer will be responsible for also copying any dependencies from conda-forge to omnia that you need and are not on the default channel

To copy packages:

If you have write access to the omnia cloud

  1. Open an Issue
    • This is important so we can track changes made to the cloud in a public space
    • Note which package, version, and any dependencies you are bringing over
  2. Get the Anaconda CLI Tool
  3. Copy the package with the CLI
    • anaconda copy conda-forge/{PACKAGE}/{VERSION} --to-owner omnia
    • Replace {PACKAGE} and {VERSION} accordingly
  4. Copy any dependencies you need in the same way
  5. Close the issue

If you do NOT have cloud write access

  1. Open an issue, request which package and dependencies
  2. Request a maintainer who has cloud write access follow the steps above.

Eventually, all packages will be on conda-forge and we won't have to worry about the multiple channels any more, until then, we thank you for your patience as we go through this transition.

Supported versions

Python packages are built against latest two releases of python (3.5 and 3.6) and python 2.7. Packages which have a binary dependency on numpy are built against the latest two releases of numpy (1.10 and 1.11).

WARNING: Numpy 1.09 support will be phased out now that numpy 1.11 has been released.

Building the packages

The recipes here are automatically built using Travis-CI for linux and osx and Appveyor-CI for win.

For linux builds, we use a modified version of the conda-forge linux-anvil, to ensure that the packages are fully compatible across multiple linux distributions and versions. This build image contains the additional tools:

There is an additional image which has clang 3.8.1

To build a package yourself, run conda build <package_name>, or ./conda-build-all ./* to build multiple packages across each of the supported python/numpy configurations.

Contributing a recipe (this has not been updated to reflect the conda-forge changes)

  1. Fork this repo
  2. Add your conda recipe for building your package packagename in a subdirectory called packagename. Feel free to use other recipes here as examples.
  3. Open a pull request to merge your branch into this master repo.
  4. It will automatically be tested to make sure it compiles.
  5. We will discuss the recipe and give suggestions about how to fix any issues.
  6. The recipe will be merged and our automated build framework will build and deploy the packages to the omnia anaconda channel under the rc label.
  7. Test the binaries by using conda install -c omnia/label/rc packagename
  8. When you're sure the binaries are ready for a full release, comment on the original pull request and a maintainer will move the package from the rc label to the main label.

FAQ

Q: Should I include an md5 hash in my source: section if using a Github compressed archive url:?
A: No. Github compressed archives are frequently regenerated with different compression settings, etc., so md5 hashes cannot be trusted to be invariant. (#699)

conda-recipes's People

Contributors

andrrizzi avatar bas-rustenburg avatar brookehus avatar chayast avatar clonker avatar cwehmeyer avatar cxhernandez avatar danielparton avatar davidlmobley avatar dwhswenson avatar franknoe avatar jchodera avatar jhprinz avatar jlmaccal avatar kyleabeauchamp avatar lnaden avatar marscher avatar mpharrigan avatar peastman avatar rbharath avatar rmcgibbo avatar swails avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.