Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: "Build ${{ matrix.pyver }} on ${{ matrix.os }}"
strategy:
matrix:
pyver: ["3.7", "3.9", "3.11", "3.13"]
pyver: ["3.9", "3.11", "3.13"]
os: [ubuntu-22.04, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -31,18 +31,18 @@ jobs:
name: "Build aarch64 ${{ matrix.pyver }}"
strategy:
matrix:
pyver: [cp38-cp38, cp310-cp310, cp312-cp312]
pyver: [cp310-cp310, cp312-cp312]
fail-fast: false
runs-on: ubuntu-latest
env:
py: /opt/python/${{ matrix.pyver }}/bin/python
img: quay.io/pypa/manylinux2014_aarch64
img: quay.io/pypa/manylinux_2_28_aarch64
steps:
- name: Checkout
uses: actions/checkout@v4
- run: |
docker run --rm --privileged hypriot/qemu-register
- uses: docker://quay.io/pypa/manylinux2014_aarch64
- uses: docker://quay.io/pypa/manylinux_2_28_aarch64
with:
args: |
bash -c "${{ env.py }} -m pip install virtualenv && ${{ env.py }} -m venv .env && \
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "wordcloud"
authors = [{ name = "Andreas Mueller", email = "t3kcit+wordcloud@gmail.com" }]
description = "A little word cloud generator"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.7"
requires-python = ">=3.9"
license = { text = "MIT License" }
dependencies = ["numpy>=1.6.1", "pillow", "matplotlib"]
dynamic = ["version"]
Expand Down
Loading