Skip to content

Debug python same #49814

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

Closed
wants to merge 7 commits into from
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
15 changes: 11 additions & 4 deletions .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,23 @@ jobs:

- name: Set up Conda
uses: ./.github/actions/setup-conda
with:
environment-file: ci/deps/asv.yaml

- name: Build Pandas
id: build
uses: ./.github/actions/build_pandas
- name: Run ASV benchmarks
run: |
git remote -v

- name: Run ASV benchmarks
run: |
git branch --show-current

- name: Run ASV benchmarks
run: |
cd asv_bench
git fetch origin main:main
asv machine --yes
asv run --quick --dry-run --strict --durations=30 --python=same
asv run --quick --dry-run --strict --durations=30

build_docker_dev_environment:
name: Build Docker Dev Environment
Expand Down
1 change: 1 addition & 0 deletions asv_bench/asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"numexpr": [],
"pytables": [null, ""], // platform dependent, see excludes below
"pyarrow": [],
"pytorch": [],
"tables": [null, ""],
"openpyxl": [],
"xlsxwriter": [],
Expand Down
35 changes: 35 additions & 0 deletions ci/deps/asv.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Dependencies used in ASV performance benchmarks
name: pandas-dev
channels:
- conda-forge
dependencies:
- python=3.8

# test dependencies
- cython>=0.29.32

# required dependencies
- python-dateutil
- numpy
- pytz

# optional dependencies
- jinja2
- matplotlib
- numba
- numexpr
- openpyxl
- odfpy
- pyarrow
- pytables
- scipy
- sqlalchemy
- xlrd
- xlsxwriter

# downstream packages
- py
- pytorch

# benchmarks
- asv
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ dependencies:
- pandas-datareader
- pyyaml
- py
- pytorch

# local testing dependencies
- moto
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ coverage
pandas-datareader
pyyaml
py
torch
moto
flask
asv
Expand Down