Skip to content

Commit 7cc5642

Browse files
committed
fix: change unknown linux to manylinux
1 parent 2aa54d7 commit 7cc5642

16 files changed

+16
-16
lines changed

.github/workflows/apply-pip-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
pyproject-toml-file: pyproject.toml
1414
requirements-in-dir: deps
1515
requirements-out-dir: deps/lock
16-
python-platforms: x86_64-unknown-linux-gnu,aarch64-apple-darwin,x86_64-apple-darwin,x86_64-pc-windows-msvc
16+
python-platforms: x86_64-manylinux_2_28,aarch64-apple-darwin,x86_64-apple-darwin,x86_64-pc-windows-msvc

.github/workflows/apply-ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
with:
1717
ruff-select: ${{ github.event.inputs.ruff-select }}
1818
ruff-ignore: ${{ github.event.inputs.ruff-ignore }}
19-
ruff-version-file: deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt
19+
ruff-version-file: deps/lock/x86_64-manylinux_2_28/requirements_dev.txt

.github/workflows/check-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ jobs:
1212
uses: deargen/workflows/actions/check-mkdocs@master
1313
with:
1414
src-dir: src
15-
requirements-docs-file: deps/lock/x86_64-unknown-linux-gnu/requirements_docs.txt
15+
requirements-docs-file: deps/lock/x86_64-manylinux_2_28/requirements_docs.txt

.github/workflows/check-pip-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
pyproject-toml-file: pyproject.toml
2323
requirements-in-dir: deps
2424
requirements-out-dir: deps/lock
25-
python-platforms: x86_64-unknown-linux-gnu,aarch64-apple-darwin,x86_64-apple-darwin,x86_64-pc-windows-msvc
25+
python-platforms: x86_64-manylinux_2_28,aarch64-apple-darwin,x86_64-apple-darwin,x86_64-pc-windows-msvc

.github/workflows/deploy-mkdocs-on-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: deargen/workflows/.github/workflows/deploy-mkdocs.yml@master
1212
with:
1313
deploy-type: latest
14-
requirements-file: deps/lock/x86_64-unknown-linux-gnu/requirements_docs.txt
14+
requirements-file: deps/lock/x86_64-manylinux_2_28/requirements_docs.txt
1515
gitlab-project: ${{ vars.GITLAB_PROJECT }}
1616
gitlab-branch: gl-pages
1717
secrets:

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
needs: commit-changelog-and-release
2626
uses: deargen/workflows/.github/workflows/deploy-mkdocs.yml@master
2727
with:
28-
requirements-file: deps/lock/x86_64-unknown-linux-gnu/requirements_docs.txt
28+
requirements-file: deps/lock/x86_64-manylinux_2_28/requirements_docs.txt
2929
gitlab-project: ${{ vars.GITLAB_PROJECT }}
3030
gitlab-branch: gl-pages
3131
version-tag: ${{ github.event.inputs.version-tag }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
uses: deargen/workflows/.github/workflows/check-ruff.yml@master
1717
with:
1818
check-type: lint
19-
ruff-version-file: deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt
19+
ruff-version-file: deps/lock/x86_64-manylinux_2_28/requirements_dev.txt

.github/workflows/styles-only-changed.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
uses: deargen/workflows/.github/workflows/check-ruff-only-changed.yml@master
1212
with:
1313
check-type: format
14-
ruff-version-file: deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt
14+
ruff-version-file: deps/lock/x86_64-manylinux_2_28/requirements_dev.txt
1515
ruff-isort-on-changes:
1616
uses: deargen/workflows/.github/workflows/check-ruff-only-changed.yml@master
1717
with:
1818
check-type: isort
19-
ruff-version-file: deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt
19+
ruff-version-file: deps/lock/x86_64-manylinux_2_28/requirements_dev.txt
2020
ruff-lint-on-changes:
2121
uses: deargen/workflows/.github/workflows/check-ruff-only-changed.yml@master
2222
with:
2323
check-type: lint
24-
ruff-version-file: deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt
24+
ruff-version-file: deps/lock/x86_64-manylinux_2_28/requirements_dev.txt

.github/workflows/styles.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
uses: deargen/workflows/.github/workflows/check-ruff.yml@master
1717
with:
1818
check-type: format
19-
ruff-version-file: deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt
19+
ruff-version-file: deps/lock/x86_64-manylinux_2_28/requirements_dev.txt
2020
ruff-isort:
2121
uses: deargen/workflows/.github/workflows/check-ruff.yml@master
2222
with:
2323
check-type: isort
24-
ruff-version-file: deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt
24+
ruff-version-file: deps/lock/x86_64-manylinux_2_28/requirements_dev.txt

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache-name: cache-conda
2929
with:
3030
path: ~/miniconda3/envs/test
31-
key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt') }}
31+
key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/lock/x86_64-manylinux_2_28/requirements_dev.txt') }}
3232
# restore-keys: |
3333
# ${{ runner.os }}-conda-${{ env.cache-name }}-
3434
# ${{ runner.os }}-conda-
@@ -39,7 +39,7 @@ jobs:
3939
if: steps.cache-conda.outputs.cache-hit != 'true'
4040
run: |
4141
# python -m pip install --upgrade pip
42-
uv pip install -r deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt
42+
uv pip install -r deps/lock/x86_64-manylinux_2_28/requirements_dev.txt
4343
uv pip install -e .
4444
bash scripts/install_binaries.sh
4545
- name: Run pytest
@@ -61,7 +61,7 @@ jobs:
6161
cache-name: cache-conda
6262
with:
6363
path: ~/miniconda3/envs/test
64-
key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt') }}
64+
key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/lock/x86_64-manylinux_2_28/requirements_dev.txt') }}
6565
# restore-keys: |
6666
# ${{ runner.os }}-conda-${{ env.cache-name }}-
6767
# ${{ runner.os }}-conda-
@@ -72,7 +72,7 @@ jobs:
7272
if: steps.cache-conda.outputs.cache-hit != 'true'
7373
run: |
7474
# python -m pip install --upgrade pip
75-
uv pip install -r deps/lock/x86_64-unknown-linux-gnu/requirements_dev.txt
75+
uv pip install -r deps/lock/x86_64-manylinux_2_28/requirements_dev.txt
7676
uv pip install -e .
7777
bash scripts/install_binaries.sh
7878
- name: Run doctest

0 commit comments

Comments
 (0)