Skip to content

Commit 95bd86b

Browse files
authored
Merge pull request #152 from avmarchenko/master
Disabled unsupported API
2 parents 31d5213 + 6d9db4e commit 95bd86b

File tree

12 files changed

+498
-932
lines changed

12 files changed

+498
-932
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,15 @@ install:
3737
- conda install -q -c conda-forge six numpy pandas pytables numba
3838
- conda install -q -c conda-forge sphinx sphinx_rtd_theme ply sympy
3939
- conda install -c conda-forge pandoc pypandoc nbsphinx ipython seaborn
40-
- conda install -q -c conda-forge python-coveralls coverage pytest pytest-cov
40+
- conda install -q -c conda-forge coveralls coverage pytest pytest-cov
4141
- pip install travis-sphinx codacy-coverage
4242
- pip install -e .
4343

4444
script:
4545
- pytest --cov;
4646
- if [[ $TRAVIS_OS_NAME == "linux" ]] && [[ $PYTHONVER == 3.6 ]]; then
47-
coverage xml;
47+
# coverage xml;
48+
coverage run --source=exa setup.py test;
4849
travis-sphinx build;
4950
fi
5051

RELEASE.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ rm -r dist/*
2626
Publish to `TestPyPI`_ (~/.pypirc required).
2727
This requires `wheel` and `twine` to be installed.
2828
```bash
29-
python setup.py sdist
30-
python setup.py bdist_wheel
31-
twine upload --repository [which] dist/*
29+
python setup.py sdist #python setup.py bdist_wheel
30+
twine upload dist/*
3231
```
3332
The variable `which` refers to the alias for the testing or production
3433
repository listed in ~/.pypirc.
@@ -46,5 +45,5 @@ in the meta.yaml source change the url to `git_url: ./`.
4645
conda build . # conda build . --output to see location
4746
# For other python version, conda build --python x.x
4847
conda convert -f --platform all /path/to/conda-bld/pltfrm/exa-...tar.bz2 -o /path/to/outputdir/
49-
conda upload /path/to/build/build.tar.bz2 # For each build
48+
anaconda upload /path/to/build/build.tar.bz2 # For each build
5049
```

exa/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@
77
"""
88
from ._version import __version__
99
from .core import (DataFrame, Series, Field3D, Field, Editor, Container,
10-
TypedMeta, SparseDataFrame, Parser)
10+
TypedMeta, SparseDataFrame)
11+
#from .core import (DataFrame, Series, Field3D, Field, Editor, Container,
12+
# TypedMeta, SparseDataFrame, Parser)

exa/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
Version Number
66
######################
77
"""
8-
version_info = (0, 4, 1)
8+
version_info = (0, 4, 2)
99
__version__ = ".".join(map(str, version_info))

exa/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Distributed under the terms of the Apache License 2.0
44
from .numerical import DataFrame, Series, Field, Field3D, SparseDataFrame
55
from .editor import Editor
6-
from .parser import Parser
6+
#from .parser import Parser
77
from .container import Container, TypedMeta

exa/core/data.py

Lines changed: 0 additions & 338 deletions
This file was deleted.

0 commit comments

Comments
 (0)