-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
238 additions
and
362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,46 @@ | ||
sudo: required | ||
dist: trusty | ||
language: python | ||
python: 3.5 | ||
|
||
# use cache for big builds | ||
matrix: | ||
include: | ||
- python: 2.6 | ||
env: TOXENV=py26 | ||
- python: 2.7 | ||
env: TOXENV=py27 | ||
- python: 3.4 | ||
env: TOXENV=py34 | ||
- python: 3.5 | ||
env: TOXENV=py35 | ||
- python: 3.6 | ||
env: TOXENV=py36 | ||
- python: 3.7 | ||
dist: xenial | ||
sudo: true | ||
env: TOXENV=py37 | ||
- python: pypy2.7-5.10.0 | ||
env: TOXENV=pypy | ||
- python: pypy3.5-5.10.0 | ||
env: TOXENV=pypy3 | ||
- python: 3.6 | ||
env: TOXENV=flake8 | ||
# use cache for big builds like pandas (to minimise build time). | ||
# If issues, clear cache | ||
# https://docs.travis-ci.com/user/caching/#Clearing-Caches | ||
cache: | ||
pip: true | ||
directories: | ||
- $HOME/.cache/pip | ||
before_cache: | ||
- rm -f $HOME/.cache/pip/log/debug.log | ||
|
||
notifications: | ||
email: false | ||
# branches: # remove travis double-check on pull requests in main repo | ||
# only: | ||
# - master | ||
# - /^\d\.\d+$/ | ||
|
||
env: | ||
- TOXENV=py26 | ||
- TOXENV=py27 | ||
- TOXENV=py33 | ||
- TOXENV=py34 | ||
- TOXENV=py35 | ||
- TOXENV=pypy | ||
- TOXENV=pypy3 | ||
- TOXENV=flake8 | ||
|
||
before_install: | ||
# fix a crash with multiprocessing on Travis | ||
- sudo rm -rf /dev/shm | ||
- sudo ln -s /run/shm /dev/shm | ||
# install codecov | ||
- pip install codecov | ||
|
||
install: | ||
# install big packages (they are cached to minimize build time) | ||
# if issues, clear cache | ||
# https://docs.travis-ci.com/user/caching/#Clearing-Caches | ||
# Coverage install | ||
- pip install tox 'coverage<4' | ||
# install this package (pymake) into the environment | ||
- python setup.py install | ||
|
||
# Install tox first, before dependencies (to get per-env deps) | ||
- pip install tox | ||
# install this package (py-make) into the environment | ||
- pip install . | ||
# run tests | ||
script: | ||
- tox | ||
# submit coverage | ||
|
||
after_success: | ||
- codecov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,19 @@ | ||
`pymake` is a product of collaborative work. | ||
Unless otherwise stated, all authors (see commit logs) retain copyright | ||
for their respective work, and release the work under the MIT licence | ||
(text below). | ||
for their respective work, and release the work under the MPLv2.0 licence. | ||
|
||
Exceptions or notable authors are listed below | ||
in reverse chronological order: | ||
|
||
* MPLv2.0 (text below) 2016 (c) Casper da Costa-Luis | ||
* files * | ||
MPLv2.0 2016-2019 (c) Casper da Costa-Luis | ||
[casperdcl](https://github.com/casperdcl). | ||
|
||
|
||
Mozilla Public Licence (MPL) v. 2.0 - Exhibit A | ||
----------------------------------------------- | ||
|
||
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. | ||
If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
|
||
MIT License (MIT) | ||
----------------- | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
the Software, and to permit persons to whom the Software is furnished to do so, | ||
subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
This Source Code Form is subject to the terms of the | ||
Mozilla Public License, v. 2.0. | ||
If a copy of the MPL was not distributed with this file, | ||
You can obtain one at https://mozilla.org/MPL/2.0/. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.