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
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@v5
Expand All @@ -58,9 +58,9 @@ jobs:
uses: codecov/codecov-action@v5

- name: Run tests with lowest resolution
if: matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest'
if: matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest'
run: just test-lowest

- name: Run tests with highest resolution
if: matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest'
if: matrix.python-version == '3.14' && matrix.os == 'ubuntu-latest'
run: just test-highest
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask-stata) and

## Unreleased

- {pull}`50` drops support for Python 3.8 and 3.9 and adds support for Python 3.14.
- {pull}`51` updates pre-commit hooks.

## 0.5.0 - 2025-07-26
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = ["click>=8.1.8,!=8.2.0", "pytask>=0.5.2"]
dynamic = ["version"]

Expand Down
5 changes: 4 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@
import shutil
import sys
from contextlib import contextmanager
from typing import Callable
from typing import TYPE_CHECKING

import pytest
from click.testing import CliRunner
from pytask import storage

from pytask_stata.config import STATA_COMMANDS

if TYPE_CHECKING:
from collections.abc import Callable

needs_stata = pytest.mark.skipif(
next(
(executable for executable in STATA_COMMANDS if shutil.which(executable)), None
Expand Down
Loading