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

Commit919d0ae

Browse files
chore: add testing of Python 3.14
Also fix __annotations__ not working in Python 3.14 by using theannotation on the 'class' instead of on the 'instance'Closes:#3013
1 parent3739b5d commit919d0ae

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

‎.github/workflows/test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,8 @@ jobs:
3636
toxenv:py312,smoke
3737
-version:"3.13"
3838
toxenv:py313,smoke
39-
# NOTE(jlvillal): 2024-10-17: Enable this once we fix
40-
# https://github.com/python-gitlab/python-gitlab/issues/3013
41-
# - version: "3.14.0-alpha - 3.14" # SemVer's version range syntax
42-
# toxenv: py314,smoke
39+
-version:"3.14.0-alpha - 3.14"# SemVer's version range syntax
40+
toxenv:py314,smoke
4341
include:
4442
-os:macos-latest
4543
python:

‎gitlab/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,12 @@ def _create_managers(self) -> None:
201201
# NOTE(jlvillal): We are creating our managers by looking at the class
202202
# annotations. If an attribute is annotated as being a *Manager type
203203
# then we create the manager and assign it to the attribute.
204-
forattr,annotationinsorted(self.__annotations__.items()):
204+
forattr,annotationinsorted(self.__class__.__annotations__.items()):
205205
# We ignore creating a manager for the 'manager' attribute as that
206206
# is done in the self.__init__() method
207207
ifattrin ("manager",):
208208
continue
209-
ifnotisinstance(annotation, (type,str)):
209+
ifnotisinstance(annotation, (type,str)):# pragma: no cover
210210
continue
211211
ifisinstance(annotation,type):
212212
cls_name=annotation.__name__

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp