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
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.10' ]
python-version: [ '3.12' ]

steps:
- uses: actions/checkout@v7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v7

- name: Set up Python 3.10
- name: Set up Python 3.12
uses: actions/setup-python@v7
with:
python-version: '3.10'
python-version: '3.12'

- name: Set up uv
uses: astral-sh/setup-uv@v9.0.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: '3.10'
python-version: '3.12'

- name: Set up uv
uses: astral-sh/setup-uv@v9.0.0
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: '3.10'
python-version: '3.12'

- name: Set up uv
uses: astral-sh/setup-uv@v9.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
python-version: [ '3.11', '3.12', '3.13' ]

steps:
- uses: actions/checkout@v7
Expand Down
4 changes: 1 addition & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
#
default_language_version:
python: python3.10
python: python3.12

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
Expand All @@ -22,5 +22,3 @@ repos:
rev: v2.3.0
hooks:
- id: codespell
additional_dependencies:
- tomli
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from datetime import date
import os
import shutil

import toml
import tomllib

import audeer


config = toml.load(audeer.path("..", "pyproject.toml"))
with open(audeer.path("..", "pyproject.toml"), "rb") as fp:
config = tomllib.load(fp)


# Project -----------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ We can create a custom config.

.. jupyter-execute::

config_str = """
config_str = r"""
[componentInstances:cComponentManager]
instance[dataMemory].type=cDataMemory

Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,12 @@ classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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 :: Scientific/Engineering',
]
requires-python = '>=3.9'
requires-python = '>=3.11'
dependencies = [
'audobject >=0.6.1',
'audinterface >=0.7.0',
Expand Down Expand Up @@ -61,7 +59,6 @@ dev = [
'sphinx-audeering-theme >=1.2.1',
'sphinx-autodoc-typehints',
'sphinx-copybutton',
'toml',
]


Expand Down