diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca0c75f9de94f..56b7616948117 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,8 @@ name: CI on: push: branches: [master] + paths-ignore: + - "doc/**" pull_request: branches: - master diff --git a/.github/workflows/database.yml b/.github/workflows/database.yml index a5aef7825c770..bd6f662f0de2e 100644 --- a/.github/workflows/database.yml +++ b/.github/workflows/database.yml @@ -3,10 +3,14 @@ name: Database on: push: branches: [master] + paths-ignore: + - "doc/**" pull_request: branches: - master - 1.2.x + paths-ignore: + - "doc/**" env: PYTEST_WORKERS: "auto" diff --git a/.github/workflows/posix.yml b/.github/workflows/posix.yml index 34e6c2c9d94ce..a7dbbe85d32db 100644 --- a/.github/workflows/posix.yml +++ b/.github/workflows/posix.yml @@ -3,10 +3,14 @@ name: Posix on: push: branches: [master] + paths-ignore: + - "doc/**" pull_request: branches: - master - 1.2.x + paths-ignore: + - "doc/**" env: PYTEST_WORKERS: "auto" diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 723347913ac38..9ed7527c804e5 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -2,8 +2,12 @@ name: pre-commit on: pull_request: + paths-ignore: + - "doc/**" push: branches: [master] + paths-ignore: + - "doc/**" jobs: pre-commit: diff --git a/.github/workflows/python-dev.yml b/.github/workflows/python-dev.yml index 2643dc5ec656e..9429b96ef8ee9 100644 --- a/.github/workflows/python-dev.yml +++ b/.github/workflows/python-dev.yml @@ -4,9 +4,13 @@ on: push: branches: - master + paths-ignore: + - "doc/**" pull_request: branches: - master + paths-ignore: + - "doc/**" jobs: build: diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 56da4e87f2709..956feaef5f83e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,7 +1,12 @@ # Adapted from https://github.com/numba/numba/blob/master/azure-pipelines.yml trigger: -- master -- 1.2.x + branches: + include: + - master + - 1.2.x + paths: + exclude: + - 'doc/*' pr: - master diff --git a/doc/source/getting_started/install.rst b/doc/source/getting_started/install.rst index 16beb00d201b7..1475b201c6e8a 100644 --- a/doc/source/getting_started/install.rst +++ b/doc/source/getting_started/install.rst @@ -6,6 +6,7 @@ Installation ============ +SOME CHANGES The easiest way to install pandas is to install it as part of the `Anaconda `__ distribution, a cross platform distribution for data analysis and scientific computing.