Skip to content

Commit 6076f93

Browse files
authored
Merge branch 'master' into dcsolvers
2 parents 3c29dcb + 0549d7b commit 6076f93

File tree

72 files changed

+5274
-754
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+5274
-754
lines changed

.gitignore

Lines changed: 37 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
## Custom stuff
2+
3+
# vim viles
4+
*.swp
5+
*.swo
6+
*~
7+
8+
# Spyder project files
9+
.spyproject/
10+
.spyderproject
11+
.spyderworkspace
12+
.spyproject/
13+
14+
# PyCharm project files
15+
.idea
16+
17+
# VS Code files
18+
.vscode/
19+
20+
# IPython / Jupyter notebook files
21+
*.ipynb
22+
.ipynb_checkpoints
23+
24+
# caches
25+
.pytest_cache/
26+
27+
# Sphinx documentation
28+
doc/_build/
29+
doc/source/generated
30+
doc/source/odl_interface
31+
doc/source/odl*.rst
32+
33+
34+
## Python
35+
136
# Byte-compiled / optimized / DLL files
237
__pycache__/
338
*.py[cod]
@@ -51,46 +86,18 @@ coverage.xml
5186
# Django stuff:
5287
*.log
5388

54-
# Sphinx documentation
55-
doc/_build/
56-
doc/source/generated
57-
doc/source/odl_interface
58-
doc/source/odl*.rst
59-
6089
# PyBuilder
6190
target/
6291

6392
# Backups from futurize/pasteurize
6493
*.py.bak
6594

66-
# Visual studio
95+
96+
## Visual studio
6797
*.sdf
6898
*.sln
6999
*.suo
70100
*.pyproj
71101
*.pyproj.user
72102
*.pyperf
73103
*.psess
74-
75-
# vim viles
76-
*.swp
77-
*.swo
78-
*~
79-
80-
# Spyder project files
81-
.spyproject/
82-
.spyderproject
83-
.spyderworkspace
84-
.spyproject/
85-
86-
# PyCharm project files
87-
.idea
88-
89-
# VS Code files
90-
.vscode/
91-
92-
# IPython / Jupyter notebook files
93-
*.ipynb
94-
.ipynb_checkpoints
95-
96-
# Documentation build files

.pep8speaks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pycodestyle:
1414
show-source: True
1515
ignore: # Errors and warnings to ignore
1616
- E402
17+
- E741
1718

1819
no_blank_comment: False
1920
only_mention_files_with_errors: True

.travis.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ matrix:
55
- python: 2.7
66
env: NUMPY_VERSION=1.13
77

8+
- python: 3.6
9+
env: NUMPY_VERSION=1.10.1
10+
811
- python: 3.6
912
env: NUMPY_VERSION=1.12
1013

@@ -46,13 +49,14 @@ install:
4649
# make it run faster and avoid downloading big stuff like mkl
4750
- conda create -n testenv python=$TRAVIS_PYTHON_VERSION nomkl pywavelets
4851
- source activate testenv
49-
# We avoid annoying issues with building pyfftw wheels by using a conda-forge version
50-
- pip install "numpy==$NUMPY_VERSION" scipy future scikit-image pytest pytest-cov # faster than conda
51-
- conda install -c conda-forge pyfftw # compilation sometimes breaks on pip, using conda therefore
52+
# Install packages with pip if possible, it's way faster
53+
- pip install "numpy==$NUMPY_VERSION" scipy future scikit-image pytest pytest-cov;
54+
# Building pyfftw wheels sometimes fails, using a conda-forge version instead
55+
- conda install -c conda-forge pyfftw
5256

5357
# Doc dependencies
5458
- if [[ "$BUILD_DOCS" == "true" ]]; then
55-
pip install "sphinx<1.7" sphinx_rtd_theme travis-sphinx;
59+
pip install "sphinx>=1.7" sphinx_rtd_theme "travis-sphinx>=2.1.2";
5660
fi
5761

5862
# Install our package

conda/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ requirements:
1919
- setuptools
2020
- nomkl # [not win]
2121
- future >=0.14
22-
- numpy >=1.9
22+
- numpy >=1.10
2323
- scipy >=0.14
2424
run:
2525
- python
2626
- future >=0.14
2727
- nomkl # [not win]
28-
- numpy >=1.9
28+
- numpy >=1.10
2929
- scipy >=0.14
3030
- matplotlib
3131
- pytest >=3.0.3

doc/source/dev/gitwash/git_links.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
.. other stuff
5858
.. _Python: http://www.python.org
59-
.. _acronym: http://docs.scipy.org/doc/numpy-dev/dev/gitwash/development_workflow.html#writing-the-commit-message
59+
.. _acronym: http://www.numpy.org/devdocs/dev/gitwash/development_workflow.html#writing-the-commit-message
6060

6161
.. |emdash| unicode:: U+02014
6262

0 commit comments

Comments
 (0)