Skip to content

Commit fef203e

Browse files
author
Valentin Sulzer
committed
remove Binder badge until Binder is fixed
1 parent bbbcc88 commit fef203e

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ ideas/
3434

3535
# setup.py files
3636
*.egg-info
37+
dist/
3738

3839
# coverage
3940
.coverage

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://travis-ci.org/tinosulzer/PyBaMM.svg?branch=master)](https://travis-ci.org/tinosulzer/PyBaMM)
44
[![Documentation Status](https://readthedocs.org/projects/pybamm/badge/?version=latest)](https://pybamm.readthedocs.io/en/latest/?badge=latest)
55
[![codecov](https://codecov.io/gh/tinosulzer/PyBaMM/branch/master/graph/badge.svg)](https://codecov.io/gh/tinosulzer/PyBaMM)
6-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/tinosulzer/PyBaMM/master)
6+
<!-- [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/tinosulzer/PyBaMM/master) -->
77
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
88

99

postBuild

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python setup.py install
1+
pip install .

requirements-docs.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
-r requirements.txt
22
sphinx>=1.5,!=1.7.3
3-
sphinx-rtd-theme

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
from setuptools import setup
1+
try:
2+
from setuptools import setup
3+
except ImportError:
4+
from distutils.core import setup
25

36
# Load text for description and license
47
with open("README.md") as f:
@@ -23,10 +26,7 @@
2326
"matplotlib>=2.0",
2427
],
2528
extras_require={
26-
"docs": [
27-
"sphinx-rtd-theme>=0.4", # Nice theme for docs
28-
"sphinx>=1.5", # For doc generation
29-
],
29+
"docs": ["sphinx>=1.5"], # For doc generation
3030
"dev": [
3131
"flake8>=3", # For code style checking
3232
"jupyter", # For documentation and testing

0 commit comments

Comments
 (0)