File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 96
96
"cchecksum>=0.0.3,<1" ,
97
97
# Pandas peer-dep: Numpy 2.0 causes issues for some users.
98
98
"numpy<2" ,
99
- "packaging" ,
99
+ "packaging>=23.0,<24 " ,
100
100
"pandas>=2.2.2,<3" ,
101
101
"pluggy>=1.3,<2" ,
102
102
"pydantic>=2.10.0,<3" ,
Original file line number Diff line number Diff line change @@ -1070,10 +1070,10 @@ def test_compile(self, project):
1070
1070
assert actual [0 ].contract_type .name == "VyperContract"
1071
1071
1072
1072
def test_values (self , tmp_project ):
1073
- contracts : dict [ str , ContractContainer ] = dict ( tmp_project .contracts )
1074
- assert "VyperContract" in contracts
1075
- example = contracts ["VyperContract" ]
1076
- count = len (contracts )
1073
+ actual = [ c . name for c in tmp_project .contracts . values ()]
1074
+ assert "VyperContract" in actual
1075
+ example = tmp_project . contracts ["VyperContract" ]
1076
+ count = len (tmp_project . contracts )
1077
1077
1078
1078
# Delete a file and try again, as a test.
1079
1079
file = tmp_project .path / example .source_id
You can’t perform that action at this time.
0 commit comments