Compare commits

...

19 Commits
v1.0 ... main

Author SHA1 Message Date
Simon Li
f00a783146
Merge pull request #20 from minrk/311
specify Python 3.11
2023-02-16 14:36:26 +00:00
Min RK
28e6aeebe9
specify Python 3.11
now that it's supported
2023-02-16 10:01:31 +01:00
Christoph Rieke
9f0e2b8c42
FIX: fix link, master to main (#18) 2022-11-28 04:49:10 -08:00
Tim Head
034931911e
Merge pull request #13 from manics/add-binder-badge
Automatically add mybinder badge on PRs
2020-09-08 18:09:38 +02:00
Simon Li
42d11f6d5f Add workflow to create a binder badge comment on PRs
See https://github.com/jupyterhub/binder/issues/212#issuecomment-687706341
2020-09-07 20:04:09 +01:00
Chris Holdgraf
5778653573
Merge pull request #12 from moble/master
Update README.md
2020-06-29 13:00:27 -07:00
Mike Boyle
e4602f2094
Update README.md
Two small — though important — changes

  1. Since [the release of conda 4.6](https://www.anaconda.com/blog/conda-4-6-release), the [recommended way to activate a conda env](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#activating-an-environment) is to use `conda activate <myenv>`.
  2. The [conda docs say](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#exporting-an-environment-file-across-platforms) that the correct way to export an env is to use the `--from-history` flag.  This only includes packages that you’ve explicitly asked for, and only "pins" versions when you asked to do so.  If you use this flag, the "macOS-specific" packages probably won't appear.
2020-06-29 15:46:05 -04:00
Tim Head
ae97e2fb6e
Update README.md 2020-02-06 14:34:46 +01:00
Chris Holdgraf
3c3441fbeb
Update README.md 2019-11-24 09:40:33 -08:00
Chris Holdgraf
9cf02a1316
Update README.md 2019-11-24 09:39:39 -08:00
Chris Holdgraf
43730859d5
Create LICENSE 2019-03-26 08:52:02 -07:00
Chris Holdgraf
5833169cb8
Merge pull request #4 from emigre459/master
OS-specific packages correction to README
2019-03-02 14:00:55 -08:00
Dave Rench McCauley
e36677f2a3
Merge pull request #1 from emigre459/OS-specificity-patch
Update README.md
2019-03-02 14:33:54 -05:00
Dave Rench McCauley
5e2f7a7300
Update README.md 2019-03-02 14:32:37 -05:00
Chris Holdgraf
eb64188c69
Update README.md 2019-02-19 09:46:07 -08:00
Tim Head
89dd429d1d
Update environment.yml 2018-12-11 15:00:35 +01:00
Yuvi Panda
26ef36d8bb
s/Anaconda/conda/
We don't make anaconda available
2017-11-17 15:39:52 -08:00
Chris Holdgraf
0d68db0cf4
Update README.md 2017-11-02 22:39:14 -07:00
Chris Holdgraf
bb15febff4
Update README.md 2017-11-02 21:03:38 -07:00
4 changed files with 60 additions and 10 deletions

11
.github/workflows/binder-badge.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: binder-badge
on:
pull_request_target:
jobs:
badge:
runs-on: ubuntu-latest
steps:
- uses: manics/action-binderbadge@main
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}

29
LICENSE Normal file
View File

@ -0,0 +1,29 @@
BSD 3-Clause License
Copyright (c) 2019, Binder Project
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@ -1,21 +1,31 @@
# Example Binder with environment.yml
# Conda environment with environment.yml
[![Binder](http://mybinder.org/badge_logo.svg)](http://mybinder.org/v2/gh/binder-examples/conda_environment/HEAD?filepath=index.ipynb)
A Binder-compatible repo with an `environment.yml` file.
[![Binder](http://mybinder.org/badge.svg)](http://beta.mybinder.org/v2/gh/binder-examples/conda_environment/v1.0?filepath=index.ipynb)
Access this Binder by clicking the blue badge above or at the following URL:
Access this Binder at the following URL:
http://mybinder.org/v2/gh/binder-examples/conda_environment/HEAD?filepath=index.ipynb
http://beta.mybinder.org/v2/gh/binder-examples/conda_environment/v1.0?filepath=index.ipynb
# Notes
## Notes
The `environment.yml` file should list all Python libraries on which your notebooks
depend, specified as though they were created using the following `conda` commands:
```
source activate example-environment
conda env export > environment.yml
conda activate example-environment
conda env export --from-history -f environment.yml
```
Note that the only libraries available to you will be the ones specified in
the `environment.yml`, so be sure to include everything that you need!
the `environment.yml`, so be sure to include everything that you need!
Also note that if you skip the `--from-history`, conda may include OS-specific
packages in `environment.yml`, which you would have to manually prune from
`environment.yml`. For example, confirmed macOS-specific packages that should
be removed are:
* libcxxabi=4.0.1
* appnope=0.1.0
* libgfortran=3.0.1
* libcxx=4.0.1

View File

@ -2,7 +2,7 @@ name: example-environment
channels:
- conda-forge
dependencies:
- python
- python=3.11
- numpy
- psutil
- toolz