Skip to content

Commit

Permalink
update for 3_11 and remove extra term
Browse files Browse the repository at this point in the history
  • Loading branch information
satr-cowi committed Oct 29, 2024
1 parent 3c9b0bb commit 336d3e3
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,9 @@ def __init__(self):

if sys.version_info[:2] >= (3, 14):
built_in_attr = ['__annotate__', '__annotations__', '__dict__', '__doc__', '__firstlineno__',
'__module__', '__static_attributes__', '__weakref__', 'relation']
'__module__', '__static_attributes__', '__weakref__']
elif sys.version_info[:2] >= (3, 13):
built_in_attr = ['__annotations__', '__dict__', '__doc__', '__firstlineno__', '__module__',
'__static_attributes__', '__weakref__', 'relation']
elif sys.version_info[:2] >= (3, 12):
built_in_attr = ['__annotations__', '__dict__', '__doc__', '__module__', '__weakref__',
'relation']
'__static_attributes__', '__weakref__']
elif sys.version_info[:2] >= (3, 11):
built_in_attr = ['__annotations__', '__dict__', '__doc__', '__module__', '__weakref__']

0 comments on commit 336d3e3

Please sign in to comment.