Skip to content

Commit

Permalink
Merge pull request #32 from Remi-Gau/3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
christiansandberg authored Oct 10, 2024
2 parents 4a8401a + 1928a99 commit d398ab2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
# Documentation
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
9 changes: 5 additions & 4 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.x']
python-version: ['3.x', '3.13']

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -36,7 +37,7 @@ jobs:
run: |
pytest tests
- name: Upload sample report
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: report
name: report-${{ matrix.python-version }}
path: tests/report
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def read(fname):
'pytest-reporter>=0.4.0',
'Jinja2',
'ansi2html>=1.3.0',
'htmlmin',
'htmlmin2',
'docutils',
],
classifiers=[
Expand Down

0 comments on commit d398ab2

Please sign in to comment.