Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Derivatives interface #38

Merged
merged 19 commits into from
Aug 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,5 @@ ENV/

.gdb_history
.cquery_cached_index/
pip-wheel-metadata/
scratch/
16 changes: 2 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ env:

matrix:
include:
- os: linux
env:
- PYTHON_VERSION=2.7
- os: linux
env:
- PYTHON_VERSION=3.5
Expand All @@ -33,9 +30,6 @@ matrix:
- os: linux
env:
- PYTHON_VERSION=3.7
- os: osx
env:
- PYTHON_VERSION=2.7
- os: osx
env:
- PYTHON_VERSION=3.5
Expand All @@ -45,14 +39,6 @@ matrix:
- os: osx
env:
- PYTHON_VERSION=3.7
allow_failures:
- os: linux
env:
- PYTHON_VERSION=2.7
- os: osx
env:
- PYTHON_VERSION=2.7


install:
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
Expand All @@ -63,6 +49,8 @@ install:
- bash miniconda.sh -b -p $HOME/miniconda
- source $HOME/miniconda/bin/activate
- conda config --set always_yes yes --set changeps1 no --set auto_update_conda no
- conda config --add channels conda-forge
- conda config --set channel_priority strict
- conda create -n testenv python=$PYTHON_VERSION pytest numpy
- source activate testenv
- conda install conda conda-verify conda-build anaconda-client twine
Expand Down
8 changes: 2 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
platform:
- x64
- x86

image: Visual Studio 2015

Expand All @@ -10,7 +9,6 @@ environment:
PYPI_PASSWORD:
secure: 3gQtEWf4jXJLJKP8oM22oCShTJ3VI+BtRYczfzO3RSQ=
matrix:
- PYTHON_VERSION: 2.7
- PYTHON_VERSION: 3.5
- PYTHON_VERSION: 3.6
- PYTHON_VERSION: 3.7
Expand All @@ -36,13 +34,11 @@ install:
- if "%PLATFORM%"=="x64" set MINICONDA=C:\Miniconda3-x64
# Load the conda root environment, configure and install some packages
- '"%MINICONDA%\Scripts\activate.bat"'
- conda config --append channels conda-forge
- conda config --add channels conda-forge
- conda config --set channel_priority strict
- conda config --set always_yes yes --set changeps1 no --set auto_update_conda no
- conda create -n testenv python=%PYTHON_VERSION% pytest numpy cmake conda conda-verify conda-build anaconda-client twine
- activate testenv
- conda install vs2008_express_vc_python_patch
# Fix for 64-bit Python 2.7 builds, courtesy vs2008_express_vc_python_patch
- call setup_x64
- conda info -a

test_script:
Expand Down
4 changes: 2 additions & 2 deletions conda-recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy:
- 1.11
# numpy:
# - 1.11

CONDA_BUILD_SYSROOT:
- /var/tmp/MacOSX-SDKs/MacOSX10.9.sdk # [osx]
3 changes: 2 additions & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ requirements:
- python {{ python }}
- numpy {{ numpy }}
- pip
- qdldl-python
build:
- {{ compiler('c') }}
- cmake
run:
- python
- {{ pin_compatible('numpy') }}
- scipy >=0.13.2
- future
- qdldl-python

test:
requires:
Expand Down
Loading