We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ab57ab commit 84604d2Copy full SHA for 84604d2
2 files changed
.github/workflows/wheels.yaml
@@ -37,7 +37,7 @@ jobs:
37
env:
38
MACOSX_DEPLOYMENT_TARGET: 10.15
39
CIBW_ARCHS_MACOS: auto universal2
40
- CIBW_SKIP: "*-win32 *-manylinux_i686 cp312-win_amd64 cp37-musllinux_x86_64"
+ CIBW_SKIP: "*-manylinux_i686 *-musllinux_* *-win32 pp37-win_amd64 cp312-win_amd64"
41
CIBW_BUILD_VERBOSITY: 1
42
- name: Verify clean directory
43
run: git diff --exit-code
@@ -64,4 +64,4 @@ jobs:
64
merge-multiple: true
65
- uses: pypa/gh-action-pypi-publish@release/v1
66
with:
67
- password: ${{ secrets.pypi_password }}
+ password: ${{ secrets.PYPI_TOKEN }}
src/pyodr/cli.py
@@ -35,6 +35,6 @@ def main(args: Sequence[str] | None = None) -> int:
35
return 0
36
-if __name__ == '__main__':
+if __name__ == "__main__":
error = main()
sys.exit(error)
0 commit comments