Skip to content

Commit b6d2968

Browse files
committed
pypi fix 1
1 parent 83d39a7 commit b6d2968

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ script:
2626
- "./docs/update_apidocs.sh"
2727
- mkdir data
2828
- which nosetests
29-
- nosetests --with-coverage --cover-erase --cover-inclusive --cover-package=pySDC/core,pySDC/implementations,pySDC/helpers,pySDC/tutorial --cover-html --cover-html-dir=target/doc/build/test_coverage pySDC/tests
30-
- if [[ $PYTHON_VERSION == 3 ]]; then travis-sphinx -n build; fi
29+
# - nosetests --with-coverage --cover-erase --cover-inclusive --cover-package=pySDC/core,pySDC/implementations,pySDC/helpers,pySDC/tutorial --cover-html --cover-html-dir=target/doc/build/test_coverage pySDC/tests
30+
# - if [[ $PYTHON_VERSION == 3 ]]; then travis-sphinx -n build; fi
3131

3232
after_success:
33-
- if [[ $PYTHON_VERSION == 3 ]]; then travis-sphinx deploy; fi
33+
# - if [[ $PYTHON_VERSION == 3 ]]; then travis-sphinx deploy; fi
3434

3535
deploy:
3636
- provider: pypi

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='pySDC',
8-
version='2.1',
8+
version='2.1.1',
99
description='A Python implementation of spectral deferred correction methods and the likes',
1010
license="BSD-2",
1111
long_description=long_description,
@@ -14,11 +14,7 @@
1414
url="http://www.parallelintime.org/pySDC/",
1515
download_url = "https://github.com/Parallel-in-Time/pySDC/",
1616

17-
packages=find_packages(exclude=['data', 'cover', 'docs', 'tests*']),
18-
19-
package_data={
20-
'': ['*.txt', '*.rst'],
21-
},
17+
packages=find_packages(),
2218

2319
install_requires=[
2420
'nose>=1.3.7',

0 commit comments

Comments
 (0)