Skip to content

Commit 4772d30

Browse files
remove python 3.13 due to package install errors
Signed-off-by: Takeshi Yoshimura <tyos@jp.ibm.com>
1 parent 87a38f5 commit 4772d30

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["cp39", "cp310", "cp311", "cp312", "cp313"]
14+
python-version: ["cp39", "cp310", "cp311", "cp312"]
1515

1616
steps:
1717
- name: Checkout code

.github/workflows/test-paddle.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest]
21-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
21+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: Set up Python
@@ -59,8 +59,8 @@ jobs:
5959
mkdir -p /tmp/pytest-log
6060
export TEST_FASTSAFETENSORS_FRAMEWORK=paddle
6161
COVERAGE_FILE=.coverage_0 pytest -s --cov=${LIBDIR} test_fastsafetensors.py > /tmp/pytest-log/0.log 2>&1
62-
COVERAGE_FILE=.coverage_1 WORLD_SIZE=2 python3 -m paddle.distributed.launch --nnodes 2 --master 127.0.0.1:1234 --rank 0 tests/test_multi.py --cov=${LIBDIR} -s tests/test_multi.py > /tmp/pytest-log/1.log 2>&1 & \
63-
COVERAGE_FILE=.coverage_2 WORLD_SIZE=2 python3 -m paddle.distributed.launch --nnodes 2 --master 127.0.0.1:1234 --rank 1 tests/test_multi.py --cov=${LIBDIR} -s tests/test_multi.py > /tmp/pytest-log/2.log 2>&1 && \
62+
COVERAGE_FILE=.coverage_1 WORLD_SIZE=2 python3 -m paddle.distributed.launch --nnodes 2 --master 127.0.0.1:1234 --rank 0 test_multi.py --cov=${LIBDIR} -s test_multi.py > /tmp/pytest-log/1.log 2>&1 & \
63+
COVERAGE_FILE=.coverage_2 WORLD_SIZE=2 python3 -m paddle.distributed.launch --nnodes 2 --master 127.0.0.1:1234 --rank 1 test_multi.py --cov=${LIBDIR} -s test_multi.py > /tmp/pytest-log/2.log 2>&1 && \
6464
coverage combine .coverage_*
6565
coverage html
6666
mv htmlcov /tmp/pytest-log

.github/workflows/test-torch.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest]
21-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
21+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: Set up Python
@@ -59,8 +59,8 @@ jobs:
5959
export TEST_FASTSAFETENSORS_FRAMEWORK=pytorch
6060
COVERAGE_FILE=.coverage_0 pytest -s --cov=${LIBDIR} test_fastsafetensors.py > /tmp/pytest-log/0.log 2>&1
6161
COVERAGE_FILE=.coverage_1 pytest -s --cov=${LIBDIR} test_vllm.py > /tmp/pytest-log/1.log 2>&1
62-
COVERAGE_FILE=.coverage_2 torchrun --nnodes=2 --master_addr=0.0.0.0 --master_port=1234 --node_rank=0 tests/test_multi.py --cov=${LIBDIR} -s tests/test_multi.py > /tmp/pytest-log/2.log 2>&1 &
63-
COVERAGE_FILE=.coverage_3 torchrun --nnodes=2 --master_addr=0.0.0.0 --master_port=1234 --node_rank=1 tests/test_multi.py --cov=${LIBDIR} -s tests/test_multi.py > /tmp/pytest-log/3.log 2>&1
62+
COVERAGE_FILE=.coverage_2 torchrun --nnodes=2 --master_addr=0.0.0.0 --master_port=1234 --node_rank=0 test_multi.py --cov=${LIBDIR} -s test_multi.py > /tmp/pytest-log/2.log 2>&1 &
63+
COVERAGE_FILE=.coverage_3 torchrun --nnodes=2 --master_addr=0.0.0.0 --master_port=1234 --node_rank=1 test_multi.py --cov=${LIBDIR} -s test_multi.py > /tmp/pytest-log/3.log 2>&1
6464
coverage combine .coverage_*
6565
coverage html
6666
mv htmlcov /tmp/pytest-log

Makefile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ htmlcov:
3939
coverage combine .coverage_* && \
4040
coverage html
4141

42-
.PHONY: integrationtest
43-
integrationtest:
44-
cd tests && COVERAGE_FILE=.coverage pytest -s test_vllm.py
45-
4642
.PHONY: builder
4743
builder: Dockerfile.build
4844
$(CONCMD) build -t fastsafetensors-builder:latest - < Dockerfile.build

0 commit comments

Comments
 (0)