Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat!: drop Python 3.9 support and add Python 3.14#3287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
nejch merged 1 commit intomainfromjlvillal/python_39_removal
Oct 29, 2025
Merged
Show file tree
Hide file tree
Changes fromall 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
12 changes: 5 additions & 7 deletions.github/workflows/test.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,8 +26,6 @@ jobs:
matrix:
os: [ubuntu-latest]
python:
- version: "3.9"
toxenv: py39,smoke
- version: "3.10"
toxenv: py310,smoke
- version: "3.11"
Expand All@@ -36,17 +34,17 @@ jobs:
toxenv: py312,smoke
- version: "3.13"
toxenv: py313,smoke
- version: "3.14.0-alpha - 3.14" # SemVer's version range syntax
- version: "3.14"
toxenv: py314,smoke
include:
- os: macos-latest
python:
version: "3.13"
toxenv:py313,smoke
version: "3.14"
toxenv:py314,smoke
- os: windows-latest
python:
version: "3.13"
toxenv:py313,smoke
version: "3.14"
toxenv:py314,smoke
steps:
- uses: actions/checkout@v5.0.0
- name: Set up Python ${{ matrix.python.version }}
Expand Down
2 changes: 1 addition & 1 deletion.readthedocs.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,7 +3,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.11"
python: "3.13"

sphinx:
configuration: docs/conf.py
Expand Down
2 changes: 1 addition & 1 deletionREADME.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -53,7 +53,7 @@ Features
Installation
------------

As of5.0.0, ``python-gitlab`` is compatible with Python 3.9+.
As of7.0.0, ``python-gitlab`` is compatible with Python 3.10+.

Use ``pip`` to install the latest stable version of ``python-gitlab``:

Expand Down
4 changes: 2 additions & 2 deletionspyproject.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@ maintainers = [
{name = "Nejc Habjan", email="nejc.habjan@siemens.com"},
{name = "Roger Meier", email="r.meier@siemens.com"}
]
requires-python = ">=3.9.0"
requires-python = ">=3.10.0"
dependencies = [
"requests>=2.32.0",
"requests-toolbelt>=1.0.0",
Expand All@@ -30,11 +30,11 @@ classifiers = [
"Operating System :: Microsoft :: Windows",
"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",
"Programming Language :: Python :: 3.14",
]
keywords = ["api", "client", "gitlab", "python", "python-gitlab", "wrapper"]
license = {text = "LGPL-3.0-or-later"}
Expand Down
3 changes: 1 addition & 2 deletionsrequirements-test.txt
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
-r requirements.txt
anyio==4.11.0
build==1.3.0
coverage==7.10.7 ; python_version <= '3.9'
coverage==7.11.0 ; python_version > '3.9'
coverage==7.11.0
pytest-console-scripts==1.4.1
pytest-cov==7.0.0
pytest-github-actions-annotate-failures==0.3.0
Expand Down
4 changes: 2 additions & 2 deletionstox.ini
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,14 +2,14 @@
minversion = 4.0
skipsdist = True
skip_missing_interpreters = True
envlist = py313,py312,py311,py310,py39,black,isort,flake8,mypy,twine-check,cz,pylint
envlist =py314,py313,py312,py311,py310,black,isort,flake8,mypy,twine-check,cz,pylint

# NOTE(jlvillal): To use a label use the `-m` flag.
# For example to run the `func` label group of environments do:
# tox -m func
labels =
lint = black,isort,flake8,mypy,pylint,cz
unit = py313,py312,py311,py310,py39,py38
unit =py314,py313,py312,py311,py310
# func is the functional tests. This is very time consuming.
func = cli_func_v4,api_func_v4

Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp