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
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
make -f Makefile fmt-ci
runs-on: ubuntu-latest
container:
image: quay.io/fedora/fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT
image: quay.io/fedora/fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v6
with:
Expand All @@ -72,7 +72,7 @@ jobs:
check-typos:
runs-on: ubuntu-latest
container:
image: quay.io/fedora/fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT
image: quay.io/fedora/fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- name: Install dependencies
run: >
Expand All @@ -97,11 +97,11 @@ jobs:
strategy:
matrix:
include:
- python: "3.13" # CURRENT DEVELOPMENT PYTHON TOOLCHAIN
- python: "3.14" # CURRENT DEVELOPMENT PYTHON TOOLCHAIN
- python: "3.12" # LOWEST SUPPORTED PYTHON TOOLCHAIN
runs-on: ubuntu-latest
container:
image: quay.io/fedora/fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT
image: quay.io/fedora/fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
options: --privileged --userns=host --ipc=host -v /run/dbus/system_bus_socket:/run/dbus/system_bus_socket:ro -v /usr/share/dbus-1:/usr/share/dbus-1
steps:
- uses: dtolnay/rust-toolchain@master
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
needs: test-runs
runs-on: ubuntu-latest
container:
image: quay.io/fedora/fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT
image: quay.io/fedora/fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
options: --privileged --userns=host --ipc=host -v /run/dbus/system_bus_socket:/run/dbus/system_bus_socket:ro -v /usr/share/dbus-1:/usr/share/dbus-1
steps:
- uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/support.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
task: make -f Makefile yamllint
runs-on: ubuntu-latest
container:
image: quay.io/fedora/fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT
image: quay.io/fedora/fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions src/stratis_cli/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Version information.
Version information.

.. moduleauthor:: mulhern <amulhern@redhat.com>
.. moduleauthor:: mulhern <amulhern@redhat.com>
"""

__version_info__ = (3, 9, 0)
Expand Down
Loading