Skip to content
Closed
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: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: CI
on:
push:
branches: [master]
paths-ignore:
- "doc/**"
pull_request:
branches:
- master
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ name: pre-commit

on:
pull_request:
paths-ignore:
- "doc/**"
push:
branches: [master]
paths-ignore:
- "doc/**"

jobs:
pre-commit:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/python-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ on:
push:
branches:
- master
paths-ignore:
- "doc/**"
pull_request:
branches:
- master
paths-ignore:
- "doc/**"

jobs:
build:
Expand Down
9 changes: 7 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions doc/source/getting_started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
Installation
============

SOME CHANGES
The easiest way to install pandas is to install it
as part of the `Anaconda <https://docs.continuum.io/anaconda/>`__ distribution, a
cross platform distribution for data analysis and scientific computing.
Expand Down