Skip to content

Commit

Permalink
Update dependencies; run tests on python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmpr committed Oct 8, 2024
1 parent 05f6e57 commit a059c05
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: 3.13

- name: Install build dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: 3.13

- name: Install ruff
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
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" ]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Kataloger

[![Python version](https://img.shields.io/badge/python-3.8-blue.svg)](https://pypi.python.org/pypi/kataloger)
[![Python version](https://img.shields.io/badge/python-3.8_--_3.13-blue.svg?logo=python&logoColor=white)](https://pypi.python.org/pypi/kataloger)
[![Latest version](https://img.shields.io/pypi/v/kataloger.svg?style=flat&label=Latest&color=%234B78E6&logo=&logoColor=white)](https://pypi.python.org/pypi/kataloger)
[![Downloads](https://static.pepy.tech/badge/kataloger/month)](https://pepy.tech/project/kataloger)
[![Tests](https://github.com/dzmpr/kataloger/actions/workflows/run-tests.yml/badge.svg?branch=main)](https://github.com/dzmpr/kataloger/actions/workflows/run-tests.yml)
Expand Down
4 changes: 2 additions & 2 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pytest==8.3.2
pytest-asyncio==0.23.8
pytest==8.3.3
pytest-asyncio==0.24.0
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiohttp==3.9.5
yarl==1.9.4
aiohttp==3.10.9
yarl==1.13.1
xmltodict==0.13.0
tomli==2.0.1;python_version<"3.11"
importlib-resources==6.4.3;python_version<"3.9"
tomli==2.0.2;python_version<"3.11"
importlib-resources==6.4.5;python_version<"3.9"

0 comments on commit a059c05

Please sign in to comment.