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

Remove symlink of backend data files #171

Merged
merged 5 commits into from
Dec 4, 2019
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
4 changes: 1 addition & 3 deletions .github/workflows/asvbench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,14 @@ jobs:
cd asv_bench/
asv machine --yes
asv continuous origin/master HEAD | tee asv.log
ASV_COMPARE="$(asv compare origin/master HEAD)"
asv compare origin/master HEAD
if [[ $(cat asv.log | grep "failed") ]]; then
echo "Benchmarks Run With Errors"
exit 1
elif [[ $(cat asv.log | grep "PERFORMANCE DECREASED") ]]; then
echo "$ASV_COMPARE"
echo "Benchmarks Decreased Performance"
exit 1
else
echo "$ASV_COMPARE"
echo "Benchmarks Run Without Errors"
fi
shell: bash
54 changes: 36 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
matrix:
include:
- os: linux
- name: "Build Docs"
os: linux
dist: xenial
language: python
python: '3.7'
Expand All @@ -12,8 +13,10 @@ matrix:
addons:
apt_packages:
- pandoc
# cover
- os: linux

# Cover 3.7 ML
- name: "Linux Python 3.7 ML COVER: Run tests"
os: linux
dist: xenial
language: python
python: '3.7'
Expand All @@ -24,23 +27,26 @@ matrix:
- TOXENV=py37-cover-ml,report
after_success:
- codecov
- name: "Win Python 3.7: Run tests"

- name: "Win Python 3.7 ML COVER: Run tests"
os: windows
language: shell
env:
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
- TOXENV=py37-cover-ml,report
before_install:
- choco install python --version 3.7.3
- choco install python --version 3.7.5
- python -m pip install --upgrade pip
after_success:
- codecov
- os: osx
osx_image: xcode9.4

- name: "OSX Python 3.7 ML COVER: Run tests"
os: osx
osx_image: xcode11.2
language: generic
env:
- TR_PYTHON_VERSION=3.7.2
- PYENV_VERSION=3.7.2
- TR_PYTHON_VERSION=3.7.5
- PYENV_VERSION=3.7.5
- TOXENV=py37-cover-ml,report
addons:
homebrew:
Expand All @@ -55,43 +61,55 @@ matrix:
- directories:
- $HOME/.cache/pip
- $HOME/.cache/pyenv
# nocov
- os: linux

# Cover 3.6 No ML
- name: "Linux Python 3.6 COVER: Run tests"
os: linux
dist: xenial
language: python
python: '3.6'
cache: pip
env:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
- TOXENV=py36-nocov
- name: "Win Python 3.6: Run tests"
- TOXENV=py36-cover,report
after_success:
- codecov

- name: "Win Python 3.6 COVER: Run tests"
os: windows
language: shell
env:
- PATH=/c/Python36:/c/Python36/Scripts:$PATH
- TOXENV=py36-nocov
- TOXENV=py36-cover,report
before_install:
- choco install python --version 3.6.2
- choco install python --version 3.6.8
- python -m pip install --upgrade pip
- os: osx
osx_image: xcode9.4
after_success:
- codecov

- name: "OSX Python 3.6 COVER: Run tests"
os: osx
osx_image: xcode11.2
language: generic
env:
- TR_PYTHON_VERSION=3.6.8
- PYENV_VERSION=3.6.8
- TOXENV=py36-nocov
- TOXENV=py36-cover,report
addons:
homebrew:
packages:
- openssl
- readline
- xl
after_success:
- codecov
cache:
- pip
- directories:
- $HOME/.cache/pip
- $HOME/.cache/pyenv

before_install:
- |
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@
Change Log
==========

.. `In-Progress`_
.. ==============
`In-Progress`_
==============


Bug Fixes
---------

* Backend data stores no longer use file symlinks, improving compatibility with some types file systems.
(`#171 <https://github.com/tensorwerk/hangar-py/pull/171>`__) `@rlizzo <https://github.com/rlizzo>`__



`v0.4.0`_ (2019-11-21)
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
graft docs
graft src
graft ci
graft tests

include .bumpversion.cfg
Expand Down
64 changes: 0 additions & 64 deletions ci/bootstrap.py

This file was deleted.

60 changes: 0 additions & 60 deletions ci/templates/.travis.yml

This file was deleted.

107 changes: 0 additions & 107 deletions ci/templates/tox.ini

This file was deleted.

Loading