Skip to content

Commit

Permalink
Python 3.6 Support (#204)
Browse files Browse the repository at this point in the history
* added more python versions to test

* removed mbuild dep

* added mbuild in for testing + now we can see what happens when we try and install it

* i expect this to fail, but we will see what deps we need

* forgot to activate env

* adding missing oset dep

* now to get appveyor happy

* lets do it more like we do it on travis

* now its just like travis

* ya cmd

* never forget a -y again!!!

* Update appveyor.yml

* Update .travis.yml

* not sure how pytest can be installed, but not seen by python

* removed a trailing new line to get another ci build

* giving up on python3.7

* lets see if I can get the build matrix for appveyor working

* Update .travis.yml

Lets see if this still works without cme-lab

* Update .travis.yml

* add noarch to conda recipe

* test installing mbuild with just conda

* remove noarch

* removed some changes to appveyor that are not *needed* right now

* properly reverted
  • Loading branch information
Mike Henry authored and mattwthompson committed Mar 13, 2019
1 parent 9e07c87 commit 3d95804
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ matrix:
include:
- { os: linux, env: PYTHON_VERSION=2.7 }
- { os: linux, env: PYTHON_VERSION=3.5 }
- { os: linux, env: PYTHON_VERSION=3.6 }
- { os: osx, env: PYTHON_VERSION=2.7 }
- { os: osx, env: PYTHON_VERSION=3.5 }
- { os: osx, env: PYTHON_VERSION=3.6 }

env:
global:
Expand Down
6 changes: 6 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@ environment:
PYTHONUNBUFFERED: 1

matrix:
- PYTHON: "C:\\Miniconda36-x64"
CONDA_PY: "27"
ARCH: "64"
- PYTHON: "C:\\Miniconda36-x64"
CONDA_PY: "35"
ARCH: "64"
- PYTHON: "C:\\Miniconda36-x64"
CONDA_PY: "36"
ARCH: "64"

install:
- set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
Expand Down

0 comments on commit 3d95804

Please sign in to comment.