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
15 changes: 7 additions & 8 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- cron: '48 23 * * 6'

env:
FEDORA_VERSION: 40
FEDORA_VERSION: 41

jobs:
build-and-push:
Expand All @@ -21,7 +21,7 @@ jobs:
matrix:
include:
- arch: amd64
toxenv: py27,py36,py38,py39,py310,py311,py312,py313,py314,pypy,pypy39,pypy310
toxenv: py36,py38,py39,py310,py311,py312,py313,py314,pypy,pypy39,pypy310,pypy311
- arch: arm64
toxenv: py312
- arch: ppc64le
Expand Down Expand Up @@ -59,12 +59,11 @@ jobs:
TOXENV: ${{ matrix.toxenv }}
run: |
docker run --rm --platform linux/${{ matrix.arch }} -v $PWD/example_project:/src -w /src -e TOXENV -e TOX_PARAMS="-p auto" fedorapython/fedora-python-tox:${{ matrix.arch }}
# Re-enable this test when switching from f40 to f41
# - name: Test dnf install and wheel build
# env:
# TOXENV: ${{ matrix.toxenv }}
# run: |
# docker run --rm --platform linux/${{ matrix.arch }} -e DNF_INSTALL="libffi-devel 'pkgconfig(libgit2) >= 1.7' /usr/bin/cowsay" fedorapython/fedora-python-tox:${{ matrix.arch }} sh -c "/run_tests.sh; pip install -I --no-deps --compile --no-binary :all: cffi pygit2~=1.14.0 && cowsay DONE"
- name: Test dnf install and wheel build
env:
TOXENV: ${{ matrix.toxenv }}
run: |
docker run --rm --platform linux/${{ matrix.arch }} -e DNF_INSTALL="libffi-devel 'pkgconfig(libgit2) >= 1.9' /usr/bin/cowsay" fedorapython/fedora-python-tox:${{ matrix.arch }} sh -c "/run_tests.sh; pip install -I --no-deps --compile --no-binary :all: cffi pygit2~=1.17.0 && cowsay DONE"
- name: Test external project with WORKDIR
run: |
docker run --rm --platform linux/${{ matrix.arch }} -e TOXENV=py3 -e GIT_URL=https://github.com/Netflix/nflxprofile.git -e WORKDIR=python fedorapython/fedora-python-tox:${{ matrix.arch }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.fedoraproject.org/fedora:40
FROM registry.fedoraproject.org/fedora:41

LABEL maintainer="Lumír 'Frenzy' Balhar <frenzy.madness@gmail.com>"

Expand All @@ -10,7 +10,7 @@ RUN dnf update -y \
pypy2-devel \
pypy3.9-devel \
pypy3.10-devel \
python2.7 \
pypy3.11-devel \
python3.6 \
python3.8 \
python3.9 \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ N goes EOL.
# Installed packages

On top of stable Fedora, this Docker image contains:
- Python 2.7, 3.6, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14
- Pypy2, Pypy3.9 and Pypy3.10
- Python 3.6, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14
- Pypy2, Pypy3.9, Pypy3.10 and Pypy3.11
- python3-pip
- gcc, gcc-c++, git-core and make
- tox
Expand Down
Loading