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/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'
cache: "pip"
- name: Configure git
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
python-version: "3.11"

- name: Install uv
uses: astral-sh/setup-uv@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'
cache: "pip"

- name: Install test dependencies
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'
cache: "pip"

- name: Install test dependencies
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ repos:
rev: 25.11.0
hooks:
- id: black
language_version: python3.9
language_version: python3.11

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.6
Expand Down
13 changes: 5 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ dependencies = [
"fox-progress-bar>=0.1.1",
"pandas>=2.0.0",
"python-dotenv>=1.0.0",
"requests>=2.0.0",
"requests>=2.32.5",
]
authors = [
{ name="Mozilla Data Collective", email="mozilladatacollective@mozillafoundation.org"},
]
description = "A Python package for interfacing with the Mozilla Data Collective's API"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
Expand All @@ -28,9 +28,6 @@ license-files = ["LICENSE*"]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"pre-commit>=3.0.0",
"bump2version>=1.0.0",
]
Expand All @@ -54,7 +51,7 @@ typecheck = "mypy:__main__"
# Black configuration
[tool.black]
line-length = 88
target-version = ['py39']
target-version = ['py311']
include = '\.pyi?$'
extend-exclude = '''
/(
Expand All @@ -72,7 +69,7 @@ extend-exclude = '''

# Ruff configuration (fast linter)
[tool.ruff]
target-version = "py39"
target-version = "py311"
line-length = 88

[tool.ruff.lint]
Expand All @@ -96,7 +93,7 @@ ignore = [

# MyPy configuration
[tool.mypy]
python_version = "3.9"
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
Expand Down
Loading