Commit f69db22 1 parent b0e1745 commit f69db22 Copy full SHA for f69db22
File tree 1 file changed +2
-2
lines changed
python/lib/dependabot/python
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ def req_txt_and_in_files
169
169
repo_contents .
170
170
select { |f | f . type == "file" } .
171
171
select { |f | f . name . end_with? ( ".txt" , ".in" ) } .
172
- reject { |f | f . size > 200_000 } .
172
+ reject { |f | f . size > 500_000 } .
173
173
map { |f | fetch_file_from_host ( f . name ) } .
174
174
select { |f | requirements_file? ( f ) } .
175
175
each { |f | @req_txt_and_in_files << f }
@@ -189,7 +189,7 @@ def req_files_for_dir(requirements_dir)
189
189
repo_contents ( dir : relative_reqs_dir ) .
190
190
select { |f | f . type == "file" } .
191
191
select { |f | f . name . end_with? ( ".txt" , ".in" ) } .
192
- reject { |f | f . size > 200_000 } .
192
+ reject { |f | f . size > 500_000 } .
193
193
map { |f | fetch_file_from_host ( "#{ relative_reqs_dir } /#{ f . name } " ) } .
194
194
select { |f | requirements_file? ( f ) }
195
195
end
You can’t perform that action at this time.
0 commit comments