Skip to content

CI: Remove PyPy references in CI testing #61814

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

Merged
merged 1 commit into from
Jul 9, 2025
Merged
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
8 changes: 0 additions & 8 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,6 @@ jobs:
env_file: actions-311.yaml
pandas_future_infer_string: "1"
platform: ubuntu-24.04
- name: "Pypy"
env_file: actions-pypy-39.yaml
pattern: "not slow and not network and not single_cpu"
test_args: "--max-worker-restart 0"
platform: ubuntu-24.04
- name: "Numpy Dev"
env_file: actions-311-numpydev.yaml
pattern: "not slow and not network and not single_cpu"
Expand Down Expand Up @@ -169,12 +164,9 @@ jobs:
with:
# xref https://github.com/cython/cython/issues/6870
werror: ${{ matrix.name != 'Freethreading' }}
# TODO: Re-enable once Pypy has Pypy 3.10 on conda-forge
if: ${{ matrix.name != 'Pypy' }}

- name: Test (not single_cpu)
uses: ./.github/actions/run-tests
if: ${{ matrix.name != 'Pypy' }}
env:
# Set pattern to not single_cpu if not already set
PATTERN: ${{ env.PATTERN == '' && 'not single_cpu' || matrix.pattern }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ jobs:
- [macos-14, macosx_arm64]
- [windows-2022, win_amd64]
- [windows-11-arm, win_arm64]
# TODO: support PyPy?
python: [["cp310", "3.10"], ["cp311", "3.11"], ["cp312", "3.12"], ["cp313", "3.13"], ["cp313t", "3.13"]]
include:
# Build Pyodide wheels and upload them to Anaconda.org
Expand Down
26 changes: 0 additions & 26 deletions ci/deps/actions-pypy-39.yaml

This file was deleted.

9 changes: 0 additions & 9 deletions scripts/validate_min_versions_in_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
YAML_PATH = pathlib.Path("ci/deps")
ENV_PATH = pathlib.Path("environment.yml")
EXCLUDE_DEPS = {"tzdata", "pyqt", "pyqt5"}
EXCLUSION_LIST = frozenset(["python=3.8[build=*_pypy]"])
# pandas package is not available
# in pre-commit environment
sys.path.append("pandas/compat")
Expand Down Expand Up @@ -111,7 +110,6 @@ def get_yaml_map_from(
for dependency in yaml_dic:
if (
isinstance(dependency, dict)
or dependency in EXCLUSION_LIST
or dependency in yaml_map
):
continue
Expand All @@ -124,11 +122,6 @@ def get_yaml_map_from(
yaml_package, yaml_version2 = yaml_dependency.split(operator)
yaml_version2 = operator + yaml_version2
yaml_map[yaml_package] = [yaml_version1, yaml_version2]
elif "[build=*_pypy]" in dependency:
search_text = search_text.replace("[build=*_pypy]", "")
yaml_package, yaml_version = search_text.split(operator)
yaml_version = operator + yaml_version
yaml_map[yaml_package] = [yaml_version]
elif operator is not None:
yaml_package, yaml_version = search_text.split(operator)
yaml_version = operator + yaml_version
Expand Down Expand Up @@ -164,8 +157,6 @@ def pin_min_versions_to_yaml_file(
) -> str:
data = yaml_file_data
for yaml_package, yaml_versions in yaml_map.items():
if yaml_package in EXCLUSION_LIST:
continue
old_dep = yaml_package
if yaml_versions is not None:
old_dep = old_dep + ", ".join(yaml_versions)
Expand Down
Loading