Skip to content

Commit

Permalink
Pin docutils to version v0.16 (#233)
Browse files Browse the repository at this point in the history
* Update requirements.txt

* Update appveyor.yml

* Update appveyor.yml

* Update appveyor.yml

* Update appveyor.yml

* Update appveyor.yml

* Update config.yml

* Update config.yml

* Update config.yml
  • Loading branch information
josh146 authored Apr 13, 2021
1 parent 89652cd commit bc53689
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
docker:
- image: circleci/python:3.6.12-stretch
environment:
CIBW_SKIP: "cp27-* cp34-* cp35-* *i686"
CIBW_SKIP: "pp* cp27-* cp34-* cp35-* cp36-* *i686"
CIBW_BEFORE_BUILD_LINUX: curl -OsL https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.tar.gz && tar xzf eigen-3.3.7.tar.gz eigen-3.3.7/Eigen --strip-components 1 && cp -rf Eigen {project}/include && pip install numpy scipy cython
CIBW_TEST_REQUIRES: numpy scipy pytest pytest-cov pytest-randomly
CIBW_TEST_COMMAND: python -m pytest --randomly-seed=137 {project}/thewalrus
Expand All @@ -84,7 +84,7 @@ jobs:
- run:
name: Build the Linux wheels.
command: |
pip install --user cibuildwheel==1.1.0
pip install --user cibuildwheel==1.10
python -m cibuildwheel --output-dir wheelhouse
- run:
name: Upload Linux wheels.
Expand All @@ -107,7 +107,7 @@ jobs:
macos:
xcode: "12.3.0"
environment:
CIBW_SKIP: "pp* cp27-* cp34-* cp35-* cp39-* *i686"
CIBW_SKIP: "pp* cp27-* cp34-* cp35-* cp36-* *i686"
CIBW_ENVIRONMENT: "MACOSX_DEPLOYMENT_TARGET=10.9"

CIBW_BEFORE_BUILD_MACOS: brew install gcc eigen libomp; pip install numpy scipy cython
Expand Down
11 changes: 8 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ environment:
EIGEN_INCLUDE_DIR: C:\eigen-3.3.7\
TEST_TIMEOUT: 1000
CIBW_BEFORE_BUILD: pip install numpy scipy cython
CIBW_SKIP: "cp27-* cp33-* cp34-* cp35-* *win32"
CIBW_SKIP: "cp27-* cp33-* cp34-* cp35-* cp36-* *win32"
CIBW_TEST_REQUIRES: "numpy scipy pytest pytest-cov pytest-randomly"
CIBW_TEST_COMMAND: "python -m pytest --randomly-seed=137 {project}/thewalrus"
CIBW_BUILD_VERBOSITY: 3
Expand All @@ -21,13 +21,18 @@ matrix:

image: Visual Studio 2017

stack: python 3.7

init:
- cmd: set PATH=C:\Python37;C:\Python37\Scripts;%PATH%

install:
- ps: wget https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.zip -outfile eigen3.zip
- cmd: 7z x eigen3.zip -o"C:\" -y > nul

build_script:
- set PATH=C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH%
- pip install numpy scipy cython cibuildwheel==1.1.0
- pip install numpy scipy cython cibuildwheel==1.10
- cibuildwheel --output-dir wheelhouse

artifacts:
Expand All @@ -51,4 +56,4 @@ for:
after_build:
- pip install https://github.com/joerick/libcloud/archive/v1.5.0-s3fix.zip
- pip install wheelhouse-uploader
- python -m wheelhouse_uploader upload --provider-name S3 --local-folder wheelhouse/ xanadu-wheels
- python -m wheelhouse_uploader upload --provider-name S3 --local-folder wheelhouse/ xanadu-wheels
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
docutils==0.16
sphinxcontrib-bibtex
sphinx==1.8.5
ipykernel
Expand Down

0 comments on commit bc53689

Please sign in to comment.