Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
teseoch committed Mar 8, 2019
1 parent 2f7ef08 commit f531cb3
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 15 deletions.
16 changes: 8 additions & 8 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ branches:
- master
environment:
matrix:
- config: Release
PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x" # currently 3.6.8
PYTHON_ARCH: "64"
# - config: Release
# PYTHON: "C:\\Python36-x64"
# PYTHON_VERSION: "3.6.x" # currently 3.6.8
# PYTHON_ARCH: "64"

- config: Release
PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x" # currently 3.5.8
PYTHON_ARCH: "64"
# - config: Release
# PYTHON: "C:\\Python35-x64"
# PYTHON_VERSION: "3.5.x" # currently 3.5.8
# PYTHON_ARCH: "64"

- config: Release
PYTHON: "C:\\Python27-x64"
Expand Down
13 changes: 9 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
language: python
python:
- "2.7"
- "3.5"
# - "2.7"
# - "3.5"
- "3.6"
os:
- linux
# - osx
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libc++-dev
- gcc-7
- g++-7
- libsuitesparse-dev
env:
- CC=gcc CXX=g++
- CC=clang CXX=clang++ CXXFLAGS="-stdlib=libc++"
- CC=gcc-7 && CXX=g++-7
# - CC=clang CXX=clang++ CXXFLAGS="-stdlib=libc++"
install:
- pip install numpy
- pip install plotly
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
# polyfem-python
[![Build Status](https://travis-ci.com/polyfem/polyfem-python.svg?branch=master)](https://travis-ci.com/polyfem/polyfem-python)
[![Build status](https://ci.appveyor.com/api/projects/status/lqfxi2pbkhpatxls?svg=true)](https://ci.appveyor.com/project/teseoch/polyfem-python)


!!! danger
The python bindings are in alpha. Expect a lot of API changes and possible bugs. Use at your own peril!


[![Last update](https://anaconda.org/conda-forge/polyfempy/badges/latest_release_date.svg)](https://anaconda.org/conda-forge/polyfempy)
[![Downloads](https://anaconda.org/conda-forge/polyfempy/badges/downloads.svg)](https://anaconda.org/conda-forge/polyfempy)
[![Install](https://anaconda.org/conda-forge/polyfempy/badges/installer/conda.svg)](https://anaconda.org/conda-forge/polyfempy)



<aside class="warning">
The python bindings are in alpha. Expect a lot of API changes and possible bugs. Use at your own peril!
</aside>

I am making efforts to provide a simple python interface to Polyfem.

For doing so I am maintaining a *conda* package which can be easily installed [https://anaconda.org/conda-forge/polyfempy](https://anaconda.org/conda-forge/polyfempy).
Expand Down

0 comments on commit f531cb3

Please sign in to comment.