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

CLN: Various cleanups in prep for a release today #61

Merged
merged 1 commit into from
Oct 2, 2017
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
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2016, Continuum Analytics, Inc. and contributors
Copyright (c) 2017, Anaconda, Inc. and contributors
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
2 changes: 1 addition & 1 deletion dask_glm/tests/test_algos_families.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def test_basic_reg_descent(func, kwargs, N, nchunks, family, lam, reg):
(gradient_descent, {'max_iter': 2}),
])
@pytest.mark.parametrize('get', [
dask.async.get_sync,
dask.local.get_sync,
dask.threaded.get,
dask.multiprocessing.get
])
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/basic_api.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"outputs": [],
"source": [
"if not os.path.exists('trip.csv'):\n",
" s3 = S3FileSystem(anon=True)\n",
" s3 = s3fs.S3FileSystem(anon=True)\n",
" s3.get(\"dask-data/nyc-taxi/2015/yellow_tripdata_2015-01.csv\", \"trip.csv\")"
]
},
Expand Down
8 changes: 4 additions & 4 deletions docs/examples/sigmoid.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"source": [
"## Taylor series expansion of the sigmoid\n",
"\n",
"$ g(x) = \\frac{1}{1 + e^{-x}} $\n",
"$g(x) = \\frac{1}{1 + e^{-x}}$\n",
"\n",
"$ g'(x) = g(x) (1-g(x)) $\n",
"$g'(x) = g(x) (1-g(x))$\n",
"\n",
"$ g''(x) = g(x) (1 - g(x)) (1 - 2 g(x))$\n",
"$g''(x) = g(x) (1 - g(x)) (1 - 2 g(x))$\n",
"\n",
"$ g'''(x) = g(x) (1 - g(x)) (1 - 2 g(x)) (1 - 4 g(x))$\n",
"$g'''(x) = g(x) (1 - g(x)) (1 - 2 g(x)) (1 - 4 g(x))$\n",
"\n"
]
},
Expand Down
8 changes: 8 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[bdist_wheel]
universal=1

[flake8]
exclude = docs

[tool:pytest]
addopts= -rsx -v