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 .ci/scripts/check_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
import os
import re
import sys
import tomllib
import typing as t
from pathlib import Path

import tomllib
import yaml
from git import Repo
from packaging.version import Version
Expand Down
2 changes: 1 addition & 1 deletion .ci/scripts/check_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
#
# For more info visit https://github.com/pulp/plugin_template

import tomllib
import warnings

import tomllib
from packaging.requirements import Requirement

CHECK_MATRIX = [
Expand Down
2 changes: 1 addition & 1 deletion .ci/scripts/collect_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
import json
import os
import re
import tomllib
import urllib.request
from pathlib import Path

import tomllib
from git import GitCommandError, Repo
from packaging.version import parse as parse_version

Expand Down
2 changes: 1 addition & 1 deletion .ci/scripts/pr_labels.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

import re
import sys
import tomllib
from pathlib import Path

import tomllib
from git import Repo


Expand Down
2 changes: 1 addition & 1 deletion .ci/scripts/validate_commit_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import re
import subprocess
import sys
import tomllib
from pathlib import Path

import tomllib
import yaml
from github import Github

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- uses: "actions/setup-python@v6"
with:
python-version: "3.12"
python-version: "3.11"
- name: "Install uv"
uses: "astral-sh/setup-uv@v7"
with:
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ classifiers=[
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
requires-python = ">=3.9"
requires-python = ">=3.11"
dependencies = [
"jsonschema>=4.4,<4.24",
"pulpcore>=3.73.0,<3.85",
Expand Down
Loading