Skip to content

Commit 02df2bb

Browse files
committed
move scripts from .github into the .ci dir
So they're included in packaged tarballs and thus will allow anyone to build wheels using the same process if they have docker or podman installed.
1 parent 750c5e6 commit 02df2bb

5 files changed

Lines changed: 3 additions & 3 deletions

File tree

File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
platforms: ${{ matrix.arch }}
105105

106106
- name: Build wheels
107-
run: .github/build-wheels ${{ matrix.arch }}
107+
run: .ci/build-wheels ${{ matrix.arch }}
108108

109109
- name: Verify wheels
110110
run: |

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ exclude_lines = [
7373
build = ["cp39-*", "cp310-*", "cp311-*"]
7474
build-frontend = "build"
7575
build-verbosity = 1
76-
before-all = "{package}/.github/buildlib"
76+
before-all = "{package}/.ci/buildlib"
7777
test-requires = "pytest"
78-
test-command = "{package}/.github/test {package}"
78+
test-command = "PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 pytest {package}/tests"
7979

8080
[tool.cibuildwheel.linux]
8181
archs = ["x86_64", "aarch64", "pp64le"]

0 commit comments

Comments
 (0)