File tree 4 files changed +10
-7
lines changed
4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ environment:
11
11
- TOXENV : py36
12
12
- TOXENV : py37
13
13
- TOXENV : py38
14
+ - TOXENV : py39
14
15
- TOXENV : pypy3
15
16
16
17
matrix :
Original file line number Diff line number Diff line change 1
- attrs >= 18.1 .0
1
+ attrs >= 19.2 .0
2
2
click
3
3
enum34 ; python_version < '3.4'
4
4
future
Original file line number Diff line number Diff line change 55
55
Programming Language :: Python :: 3.5
56
56
Programming Language :: Python :: 3.6
57
57
Programming Language :: Python :: 3.7
58
+ Programming Language :: Python :: 3.8
59
+ Programming Language :: Python :: 3.9
58
60
"""
59
61
60
62
from setuptools import find_packages , setup
77
79
license = "BSD" ,
78
80
platforms = ["any" ],
79
81
install_requires = [
80
- "attrs>=18.1 .0" ,
82
+ "attrs>=19.2 .0" ,
81
83
"click" ,
82
84
"enum34; python_version < '3.4'" ,
83
85
"future" ,
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ def normalize_value_table(table): # type: (typing.Mapping) -> typing.MutableMap
121
121
return {int (k ): v for k , v in table .items ()}
122
122
123
123
124
- @attr .s (cmp = False )
124
+ @attr .s (eq = False )
125
125
class Signal (object ):
126
126
"""
127
127
Represents a Signal in CAN Matrix.
@@ -449,7 +449,7 @@ def __str__(self): # type: () -> str
449
449
return self .name
450
450
451
451
452
- @attr .s (cmp = False )
452
+ @attr .s (eq = False )
453
453
class SignalGroup (object ):
454
454
"""
455
455
Represents signal-group, containing multiple Signals.
@@ -746,7 +746,7 @@ def __eq__(self, other):
746
746
)
747
747
)
748
748
749
- @attr .s (cmp = False )
749
+ @attr .s (eq = False )
750
750
class Pdu (object ):
751
751
"""
752
752
Represents a PDU.
@@ -814,7 +814,7 @@ def signal_by_name(self, name):
814
814
return None
815
815
816
816
817
- @attr .s (cmp = False )
817
+ @attr .s (eq = False )
818
818
class Frame (object ):
819
819
"""
820
820
Represents CAN Frame.
@@ -1519,7 +1519,7 @@ class matrix_class(enum.Enum):
1519
1519
FLEXRAY = 2
1520
1520
SOMEIP = 3
1521
1521
1522
- @attr .s (cmp = False )
1522
+ @attr .s (eq = False )
1523
1523
class CanMatrix (object ):
1524
1524
"""
1525
1525
The Can-Matrix-Object
You can’t perform that action at this time.
0 commit comments