├── .clang-format ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── bottleneck-action │ └── action.yml ├── renovate.json └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── LICENSES ├── NUMPY_LICENSE ├── PANDAS_LICENSE ├── SCIPY_LICENSE └── SETUPTOOLS_LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── RELEASE.rst ├── asv_bench ├── asv.conf.json └── benchmarks │ ├── __init__.py │ ├── memory.py │ ├── move.py │ ├── nonreduce.py │ ├── nonreduce_axis.py │ └── reduce.py ├── bottleneck ├── .gitignore ├── __init__.py ├── _pytesttester.py ├── _version.py ├── benchmark │ ├── __init__.py │ ├── autotimeit.py │ ├── bench.py │ └── bench_detailed.py ├── conftest.py ├── include │ ├── bottleneck.h │ └── iterators.h ├── slow │ ├── __init__.py │ ├── move.py │ ├── nonreduce.py │ ├── nonreduce_axis.py │ └── reduce.py ├── src │ ├── .gitignore │ ├── __init__.py │ ├── bn_config.py │ ├── bn_template.py │ ├── bottleneck.h │ ├── iterators.h │ ├── move_median │ │ ├── .gitignore │ │ ├── makefile │ │ ├── move_median.c │ │ ├── move_median.h │ │ └── move_median_debug.c │ ├── move_template.c │ ├── nonreduce_axis_template.c │ ├── nonreduce_template.c │ └── reduce_template.c └── tests │ ├── __init__.py │ ├── common.py │ ├── data │ └── template_test │ │ ├── test_template.c │ │ └── truth.c │ ├── docker │ ├── centos_7_min_deps │ │ └── Dockerfile │ ├── centos_8_min_deps │ │ └── Dockerfile │ ├── release_tests.sh │ ├── ubuntu_devel_min_deps │ │ └── Dockerfile │ └── ubuntu_lts_min_deps │ │ └── Dockerfile │ ├── input_modification_test.py │ ├── list_input_test.py │ ├── memory_test.py │ ├── move_test.py │ ├── nonreduce_axis_test.py │ ├── nonreduce_test.py │ ├── reduce_test.py │ ├── scalar_input_test.py │ ├── test_template.py │ └── util.py ├── codecov.yml ├── doc ├── doc_howto ├── image │ ├── icon.png │ ├── icon.xcf │ └── icon14.png ├── source │ ├── _templates │ │ └── layout.html │ ├── bottleneck.benchmark.rst │ ├── bottleneck.move.rst │ ├── bottleneck.nonreduce.rst │ ├── bottleneck.nonreduce_axis.rst │ ├── bottleneck.reduce.rst │ ├── bottleneck.rst │ ├── bottleneck.slow.rst │ ├── bottleneck.src.rst │ ├── bottleneck.tests.rst │ ├── conf.py │ ├── index.rst │ ├── installing.rst │ ├── intro.rst │ ├── license.rst │ ├── reference.rst │ ├── release.rst │ └── releases │ │ ├── RELEASE.rst │ │ ├── v0.1.0.rst │ │ ├── v0.2.0.rst │ │ ├── v0.3.0.rst │ │ ├── v0.4.0.rst │ │ ├── v0.4.1.rst │ │ ├── v0.4.2.rst │ │ ├── v0.4.3.rst │ │ ├── v0.5.0.rst │ │ ├── v0.6.0.rst │ │ ├── v0.7.0.rst │ │ ├── v0.8.0.rst │ │ ├── v1.0.0.rst │ │ ├── v1.1.0.rst │ │ ├── v1.2.0.rst │ │ ├── v1.2.1.rst │ │ ├── v1.3.0.rst │ │ ├── v1.3.1.rst │ │ ├── v1.3.2.rst │ │ └── v1.4.0.rst └── sphinxext │ ├── announce.py │ └── contributors.py ├── pyproject.toml ├── readthedocs.yml ├── setup.cfg ├── setup.py ├── tools ├── appveyor │ ├── conda_setup.py │ ├── conda_wrapper.py │ └── windows_sdk.cmd ├── test-installed-bottleneck.py ├── travis │ ├── bn_setup.sh │ ├── conda_install.sh │ └── conda_setup.sh └── update_readme.py └── versioneer.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | bottleneck/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/bottleneck-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/.github/bottleneck-action/action.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/NUMPY_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/LICENSES/NUMPY_LICENSE -------------------------------------------------------------------------------- /LICENSES/PANDAS_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/LICENSES/PANDAS_LICENSE -------------------------------------------------------------------------------- /LICENSES/SCIPY_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/LICENSES/SCIPY_LICENSE -------------------------------------------------------------------------------- /LICENSES/SETUPTOOLS_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/LICENSES/SETUPTOOLS_LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/RELEASE.rst -------------------------------------------------------------------------------- /asv_bench/asv.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/asv_bench/asv.conf.json -------------------------------------------------------------------------------- /asv_bench/benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asv_bench/benchmarks/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/asv_bench/benchmarks/memory.py -------------------------------------------------------------------------------- /asv_bench/benchmarks/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/asv_bench/benchmarks/move.py -------------------------------------------------------------------------------- /asv_bench/benchmarks/nonreduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/asv_bench/benchmarks/nonreduce.py -------------------------------------------------------------------------------- /asv_bench/benchmarks/nonreduce_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/asv_bench/benchmarks/nonreduce_axis.py -------------------------------------------------------------------------------- /asv_bench/benchmarks/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/asv_bench/benchmarks/reduce.py -------------------------------------------------------------------------------- /bottleneck/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/.gitignore -------------------------------------------------------------------------------- /bottleneck/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/__init__.py -------------------------------------------------------------------------------- /bottleneck/_pytesttester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/_pytesttester.py -------------------------------------------------------------------------------- /bottleneck/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/_version.py -------------------------------------------------------------------------------- /bottleneck/benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bottleneck/benchmark/autotimeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/benchmark/autotimeit.py -------------------------------------------------------------------------------- /bottleneck/benchmark/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/benchmark/bench.py -------------------------------------------------------------------------------- /bottleneck/benchmark/bench_detailed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/benchmark/bench_detailed.py -------------------------------------------------------------------------------- /bottleneck/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/conftest.py -------------------------------------------------------------------------------- /bottleneck/include/bottleneck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/include/bottleneck.h -------------------------------------------------------------------------------- /bottleneck/include/iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/include/iterators.h -------------------------------------------------------------------------------- /bottleneck/slow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/slow/__init__.py -------------------------------------------------------------------------------- /bottleneck/slow/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/slow/move.py -------------------------------------------------------------------------------- /bottleneck/slow/nonreduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/slow/nonreduce.py -------------------------------------------------------------------------------- /bottleneck/slow/nonreduce_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/slow/nonreduce_axis.py -------------------------------------------------------------------------------- /bottleneck/slow/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/slow/reduce.py -------------------------------------------------------------------------------- /bottleneck/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/.gitignore -------------------------------------------------------------------------------- /bottleneck/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bottleneck/src/bn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/bn_config.py -------------------------------------------------------------------------------- /bottleneck/src/bn_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/bn_template.py -------------------------------------------------------------------------------- /bottleneck/src/bottleneck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/bottleneck.h -------------------------------------------------------------------------------- /bottleneck/src/iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/iterators.h -------------------------------------------------------------------------------- /bottleneck/src/move_median/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | -------------------------------------------------------------------------------- /bottleneck/src/move_median/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/move_median/makefile -------------------------------------------------------------------------------- /bottleneck/src/move_median/move_median.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/move_median/move_median.c -------------------------------------------------------------------------------- /bottleneck/src/move_median/move_median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/move_median/move_median.h -------------------------------------------------------------------------------- /bottleneck/src/move_median/move_median_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/move_median/move_median_debug.c -------------------------------------------------------------------------------- /bottleneck/src/move_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/move_template.c -------------------------------------------------------------------------------- /bottleneck/src/nonreduce_axis_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/nonreduce_axis_template.c -------------------------------------------------------------------------------- /bottleneck/src/nonreduce_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/nonreduce_template.c -------------------------------------------------------------------------------- /bottleneck/src/reduce_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/src/reduce_template.c -------------------------------------------------------------------------------- /bottleneck/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bottleneck/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/common.py -------------------------------------------------------------------------------- /bottleneck/tests/data/template_test/test_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/data/template_test/test_template.c -------------------------------------------------------------------------------- /bottleneck/tests/data/template_test/truth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/data/template_test/truth.c -------------------------------------------------------------------------------- /bottleneck/tests/docker/centos_7_min_deps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/docker/centos_7_min_deps/Dockerfile -------------------------------------------------------------------------------- /bottleneck/tests/docker/centos_8_min_deps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/docker/centos_8_min_deps/Dockerfile -------------------------------------------------------------------------------- /bottleneck/tests/docker/release_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/docker/release_tests.sh -------------------------------------------------------------------------------- /bottleneck/tests/docker/ubuntu_devel_min_deps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/docker/ubuntu_devel_min_deps/Dockerfile -------------------------------------------------------------------------------- /bottleneck/tests/docker/ubuntu_lts_min_deps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/docker/ubuntu_lts_min_deps/Dockerfile -------------------------------------------------------------------------------- /bottleneck/tests/input_modification_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/input_modification_test.py -------------------------------------------------------------------------------- /bottleneck/tests/list_input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/list_input_test.py -------------------------------------------------------------------------------- /bottleneck/tests/memory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/memory_test.py -------------------------------------------------------------------------------- /bottleneck/tests/move_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/move_test.py -------------------------------------------------------------------------------- /bottleneck/tests/nonreduce_axis_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/nonreduce_axis_test.py -------------------------------------------------------------------------------- /bottleneck/tests/nonreduce_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/nonreduce_test.py -------------------------------------------------------------------------------- /bottleneck/tests/reduce_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/reduce_test.py -------------------------------------------------------------------------------- /bottleneck/tests/scalar_input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/scalar_input_test.py -------------------------------------------------------------------------------- /bottleneck/tests/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/test_template.py -------------------------------------------------------------------------------- /bottleneck/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/bottleneck/tests/util.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/doc_howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/doc_howto -------------------------------------------------------------------------------- /doc/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/image/icon.png -------------------------------------------------------------------------------- /doc/image/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/image/icon.xcf -------------------------------------------------------------------------------- /doc/image/icon14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/image/icon14.png -------------------------------------------------------------------------------- /doc/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/_templates/layout.html -------------------------------------------------------------------------------- /doc/source/bottleneck.benchmark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/bottleneck.benchmark.rst -------------------------------------------------------------------------------- /doc/source/bottleneck.move.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/bottleneck.move.rst -------------------------------------------------------------------------------- /doc/source/bottleneck.nonreduce.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/bottleneck.nonreduce.rst -------------------------------------------------------------------------------- /doc/source/bottleneck.nonreduce_axis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/bottleneck.nonreduce_axis.rst -------------------------------------------------------------------------------- /doc/source/bottleneck.reduce.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/bottleneck.reduce.rst -------------------------------------------------------------------------------- /doc/source/bottleneck.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/bottleneck.rst -------------------------------------------------------------------------------- /doc/source/bottleneck.slow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/bottleneck.slow.rst -------------------------------------------------------------------------------- /doc/source/bottleneck.src.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/bottleneck.src.rst -------------------------------------------------------------------------------- /doc/source/bottleneck.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/bottleneck.tests.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/installing.rst -------------------------------------------------------------------------------- /doc/source/intro.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../README.rst 2 | :start-line: 4 3 | -------------------------------------------------------------------------------- /doc/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/license.rst -------------------------------------------------------------------------------- /doc/source/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/reference.rst -------------------------------------------------------------------------------- /doc/source/release.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../RELEASE.rst 2 | -------------------------------------------------------------------------------- /doc/source/releases/RELEASE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/RELEASE.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.1.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.2.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.3.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.4.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.4.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.4.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.4.1.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.4.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.4.2.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.4.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.4.3.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.5.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.5.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.6.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.6.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.7.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.7.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v0.8.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v0.8.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v1.0.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v1.0.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v1.1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v1.1.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v1.2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v1.2.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v1.2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v1.2.1.rst -------------------------------------------------------------------------------- /doc/source/releases/v1.3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v1.3.0.rst -------------------------------------------------------------------------------- /doc/source/releases/v1.3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v1.3.1.rst -------------------------------------------------------------------------------- /doc/source/releases/v1.3.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v1.3.2.rst -------------------------------------------------------------------------------- /doc/source/releases/v1.4.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/source/releases/v1.4.0.rst -------------------------------------------------------------------------------- /doc/sphinxext/announce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/sphinxext/announce.py -------------------------------------------------------------------------------- /doc/sphinxext/contributors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/doc/sphinxext/contributors.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/setup.py -------------------------------------------------------------------------------- /tools/appveyor/conda_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/tools/appveyor/conda_setup.py -------------------------------------------------------------------------------- /tools/appveyor/conda_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/tools/appveyor/conda_wrapper.py -------------------------------------------------------------------------------- /tools/appveyor/windows_sdk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/tools/appveyor/windows_sdk.cmd -------------------------------------------------------------------------------- /tools/test-installed-bottleneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/tools/test-installed-bottleneck.py -------------------------------------------------------------------------------- /tools/travis/bn_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/tools/travis/bn_setup.sh -------------------------------------------------------------------------------- /tools/travis/conda_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/tools/travis/conda_install.sh -------------------------------------------------------------------------------- /tools/travis/conda_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/tools/travis/conda_setup.sh -------------------------------------------------------------------------------- /tools/update_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/tools/update_readme.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/bottleneck/HEAD/versioneer.py --------------------------------------------------------------------------------