Skip to content

Commit

Permalink
Merge pull request #39 from digitronik/py313
Browse files Browse the repository at this point in the history
Python 3.13 test run
  • Loading branch information
mshriver authored Jan 20, 2025
2 parents db5b3c8 + f31c8be commit 86c3303
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
branches:
- main
- master
tags:
- "v*"
release:
Expand All @@ -19,15 +19,15 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@v1
- uses: hynek/build-and-inspect-python-package@v2

test:
runs-on: ubuntu-latest
needs: [dist]
strategy:
matrix:
# todo: extract from source
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
install-from: ["dist/*.whl"]
steps:
- uses: actions/checkout@v4
Expand All @@ -37,13 +37,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}
- name: Install pytest
run: pip install pytest
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: Packages
path: dist
Expand All @@ -59,7 +59,7 @@ jobs:
if: ${{ github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') }}
needs: [test]
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: Packages
path: dist
Expand Down
11 changes: 2 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
.. image:: https://travis-ci.org/RedHatQE/navmazing.svg
:scale: 50 %
:alt: Build Status
:align: left
:target: https://travis-ci.org/RedHatQE/navmazing
.. image:: https://coveralls.io/repos/RedHatQE/navmazing/badge.svg?branch=master&service=github
:scale: 50 %
:alt: Coverage Status
:align: left
.. image:: https://coveralls.io/repos/github/RedHatQE/navmazing/badge.svg?branch=master
:target: https://coveralls.io/github/RedHatQE/navmazing?branch=master


navmazing
=========

Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",

]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311},mypy
envlist = py{38,39,310,311,312,313},mypy
build_isolation = true

[testenv]
Expand Down

0 comments on commit 86c3303

Please sign in to comment.