Skip to content

Commit f6e5029

Browse files
mroeschkejorisvandenbossche
authored andcommitted
CI: Remove CircleCI in favor of GHA ARM builds (pandas-dev#60761)
(cherry picked from commit f3045db)
1 parent 6bb498b commit f6e5029

File tree

4 files changed

+3
-210
lines changed

4 files changed

+3
-210
lines changed

.circleci/config.yml

-143
This file was deleted.

.gitattributes

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ pandas/_version.py export-subst
6161
*.pxi export-ignore
6262

6363
# Ignoring stuff from the top level
64-
.circleci export-ignore
6564
.github export-ignore
6665
asv_bench export-ignore
6766
ci export-ignore

ci/deps/circle-310-arm64.yaml

-62
This file was deleted.

pandas/tests/io/conftest.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,13 @@ def s3_base(worker_id, monkeypatch):
6767
monkeypatch.setenv("AWS_SECRET_ACCESS_KEY", "foobar_secret")
6868
if is_ci_environment():
6969
if is_platform_arm() or is_platform_mac() or is_platform_windows():
70-
# NOT RUN on Windows/macOS/ARM, only Ubuntu
70+
# NOT RUN on Windows/macOS, only Ubuntu
7171
# - subprocess in CI can cause timeouts
7272
# - GitHub Actions do not support
7373
# container services for the above OSs
74-
# - CircleCI will probably hit the Docker rate pull limit
7574
pytest.skip(
76-
"S3 tests do not have a corresponding service in "
77-
"Windows, macOS or ARM platforms"
75+
"S3 tests do not have a corresponding service on "
76+
"Windows or macOS platforms"
7877
)
7978
else:
8079
# set in .github/workflows/unit-tests.yml

0 commit comments

Comments
 (0)