GitXplorerGitXplorer
L

nightly-wheels

public
0 stars
2 forks
0 issues

Commits

List of commits on branch main.
Unverified
7ee48102bff56cdc3cb4e0ecbdd76503f7578ef6

Add metatensor-learn

LLuthaf committed a year ago
Unverified
d08211c51eb00337aa8f6f15986db1373c78ede3

Fix metatensor sdist generation

LLuthaf committed 10 months ago
Unverified
af3816ae4842d2e0606cb321690945d1fa83a68e

Split building of metatensor-core and other wheels/sdist

LLuthaf committed a year ago
Unverified
de71d985539e503019ef0ba718d37d58296a22ed

Disable building of librascal

LLuthaf committed a year ago
Unverified
2153a61d5bc94fe01fac93da699ad01e1a10b4d4

We no longer need to patch rascaline

LLuthaf committed a year ago
Unverified
268f4c27b0083c99430feb4cd1b71ca8551c246e

Update README for metatensor

LLuthaf committed a year ago

README

The README file for this repository.

Nighty Wheels

This repository contains code to build a bunch of lab-cosmo Python projects each day, and make the pre-built wheels directly installable with pip.

librascal

librascal

Library to generate representations for atomic-scale learning, https://github.com/lab-cosmo/librascal

# install rascal dependencies first
pip install numpy scipy ase

# finally install librascal itself (this can not be a single step since there is
# another package called rascal on PyPI)
pip install --index-url https://luthaf.fr/nightly-wheels/ rascal

metatensor

metatensor

Data storage and manipulation for atomistic machine learning, https://github.com/lab-cosmo/metatensor

# install the full project
pip install --extra-index-url https://luthaf.fr/nightly-wheels/ metatensor
# install the full project, including the torch interface
pip install --extra-index-url https://luthaf.fr/nightly-wheels/ metatensor[torch]

# install sub-packages (not required if you installed the full project)
pip install --extra-index-url https://luthaf.fr/nightly-wheels/ metatensor-core
pip install --extra-index-url https://luthaf.fr/nightly-wheels/ metatensor-torch
pip install --extra-index-url https://luthaf.fr/nightly-wheels/ metatensor-operations

rascaline

rascaline

Computing representations for atomistic machine learning, https://github.com/luthaf/rascaline

# install the full project
pip install --extra-index-url https://luthaf.fr/nightly-wheels/ rascaline

Adding a new project

  1. copy one of the workflow in .github/workflows to <new-project.yml> and edit it to build the wheels in the build-wheels job
  2. open a PR with these changes, make sure CI passes and merge it
  3. add the new project folder to the index.html file on the gh-pages branch