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
12 changes: 5 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Features
Installation
------------

As of 5.0.0, ``python-gitlab`` is compatible with Python 3.9+.
As of 7.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 deletions pyproject.toml
Original file line number Diff line number Diff 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 deletions requirements-test.txt
Original file line number Diff line number Diff 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 deletions tox.ini
Original file line number Diff line number Diff 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