Skip to content

Commit

Permalink
MAINT: Split testR out [wheel build]
Browse files Browse the repository at this point in the history
R is a very heavy dependency for a very simple test..
  • Loading branch information
HaoZeke committed Nov 23, 2024
1 parent e34a487 commit 5f0002c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ jobs:

- name: Install dependencies (standard)
if: matrix.python-version != '3.12.0-rc.2'
run: python -m pip install ".[test,hg]"
run: python -m pip install ".[test,hg,testR]"

- name: Install dependencies (with --pre)
if: matrix.python-version == '3.12.0-rc.2'
run: python -m pip install ".[test,hg]" --pre
run: python -m pip install ".[test,hg,testR]" --pre

- name: Install asv
run: pip install .
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ test = [
"flaky",
"pytest-rerunfailures",
"python-hglib; platform_system != 'Windows'",
"rpy2; platform_system != 'Windows' and platform_python_implementation != 'PyPy'",
]
doc = [
"sphinx",
Expand All @@ -82,6 +81,9 @@ hg = [
plugs = [
"asv-bench-memray",
]
testR = [
"rpy2; platform_system != 'Windows' and platform_python_implementation != 'PyPy'",
]
all = ["asv[doc,dev,hg,plugs]"]
[build-system]
requires = [
Expand Down

0 comments on commit 5f0002c

Please sign in to comment.