dependabot-python 0.169.4 → 0.169.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 03a79cb4254352993428712d4ef74d2c110ab928b8ba0d0483dc970237190c84
4
- data.tar.gz: 9696c83711a9b62d60bf55180e2a33b5f8c148270bf28df345448674d064da0e
3
+ metadata.gz: 53c056d3eb55e6bc15d35198695267ae121b207caca00ff80143f8da2e8393b8
4
+ data.tar.gz: 7621affe1f08ca82dc43495b3afd71c39c3a8582414be6e8657f4011547e66d5
5
5
  SHA512:
6
- metadata.gz: 720e7793d4d494b748c751710af7b9daa2f44dcdafc15049d87d35933d237f81802f3fd3e7ba82ed38f63d8d6f5f83410f78eb58c72325e3b82bbd9ea14ac5fc
7
- data.tar.gz: f48cf0aa531247ec9d49f1cd7adfc4aed419f288c913ef3ee63ab018eccced84071435ab36b456864c6c73f60d1a837948dd9803a64bad0cdaac0bdc306ffeab
6
+ metadata.gz: 657bfc902660d760f2d896760bbcff02fb8ddd3c02280037c3c3af9f3bb0b2b41792ddd8bea67df1b2cc2b46f72a443ab70aa8e0afc6b7e85498e718092c0888
7
+ data.tar.gz: cce8508b43d719ce37e0b6f2aa6734d191c7e38d02146012d62ecf3552cc2cb947b7ff2712c654a6ac3a15a64a9d86b0e59a4781c418f3f89d5caef2c97e5775
@@ -8,4 +8,4 @@ poetry==1.1.12
8
8
  wheel==0.37.0
9
9
 
10
10
  # Some dependencies will only install if Cython is present
11
- Cython==0.29.24
11
+ Cython==0.29.25
@@ -13,7 +13,8 @@ module Dependabot
13
13
  elsif Base64.decode64(token).ascii_only? &&
14
14
  Base64.decode64(token).include?(":")
15
15
  Base64.decode64(token)
16
- else token
16
+ else
17
+ token
17
18
  end
18
19
 
19
20
  if basic_auth_details.include?(":")
@@ -106,7 +106,8 @@ module Dependabot
106
106
 
107
107
  def group_from_filename(filename)
108
108
  if filename.include?("dev") then ["dev-dependencies"]
109
- else ["dependencies"]
109
+ else
110
+ ["dependencies"]
110
111
  end
111
112
  end
112
113
 
@@ -327,7 +327,8 @@ module Dependabot
327
327
  elsif user_specified_python_requirement
328
328
  parts = user_specified_python_requirement.split(".")
329
329
  parts.fill("*", (parts.length)..2).join(".")
330
- else PythonVersions::PRE_INSTALLED_PYTHON_VERSIONS.first
330
+ else
331
+ PythonVersions::PRE_INSTALLED_PYTHON_VERSIONS.first
331
332
  end
332
333
 
333
334
  # Ideally, the requirement is satisfied by a Python version we support
@@ -82,7 +82,8 @@ module Dependabot
82
82
  if req_string.match?(/~[^>]/) then convert_tilde_req(req_string)
83
83
  elsif req_string.start_with?("^") then convert_caret_req(req_string)
84
84
  elsif req_string.include?(".*") then convert_wildcard(req_string)
85
- else req_string
85
+ else
86
+ req_string
86
87
  end
87
88
  end
88
89
 
@@ -108,7 +109,8 @@ module Dependabot
108
109
  if i < first_non_zero_index then part
109
110
  elsif i == first_non_zero_index then (part.to_i + 1).to_s
110
111
  elsif i > first_non_zero_index && i == 2 then "0.a"
111
- else 0
112
+ else
113
+ 0
112
114
  end
113
115
  end.join(".")
114
116
 
@@ -271,7 +271,8 @@ module Dependabot
271
271
  FileUtils.mkdir_p(Pathname.new(path).dirname)
272
272
  updated_content =
273
273
  if update_requirement then update_req_file(file, updated_req)
274
- else file.content
274
+ else
275
+ file.content
275
276
  end
276
277
  File.write(path, updated_content)
277
278
  end
@@ -405,7 +405,8 @@ module Dependabot
405
405
  elsif user_specified_python_requirement
406
406
  parts = user_specified_python_requirement.split(".")
407
407
  parts.fill("*", (parts.length)..2).join(".")
408
- else PythonVersions::PRE_INSTALLED_PYTHON_VERSIONS.first
408
+ else
409
+ PythonVersions::PRE_INSTALLED_PYTHON_VERSIONS.first
409
410
  end
410
411
 
411
412
  # Ideally, the requirement is satisfied by a Python version we support
@@ -90,7 +90,8 @@ module Dependabot
90
90
 
91
91
  updated_lockfile =
92
92
  if File.exist?("poetry.lock") then File.read("poetry.lock")
93
- else File.read("pyproject.lock")
93
+ else
94
+ File.read("pyproject.lock")
94
95
  end
95
96
  updated_lockfile = TomlRB.parse(updated_lockfile)
96
97
 
@@ -311,7 +311,8 @@ module Dependabot
311
311
  version.segments.count - 2
312
312
  elsif req_string.strip.start_with?("~")
313
313
  req_string.split(".").count == 1 ? 0 : 1
314
- else raise "Don't know how to convert #{req_string} to range"
314
+ else
315
+ raise "Don't know how to convert #{req_string} to range"
315
316
  end
316
317
  end
317
318
 
@@ -335,7 +336,8 @@ module Dependabot
335
336
  version_to_be_permitted.segments[index]
336
337
  elsif index == index_to_update
337
338
  version_to_be_permitted.segments[index] + 1
338
- else 0
339
+ else
340
+ 0
339
341
  end
340
342
  end
341
343
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependabot-python
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.169.4
4
+ version: 0.169.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-07 00:00:00.000000000 Z
11
+ date: 2021-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dependabot-common
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.169.4
19
+ version: 0.169.5
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.169.4
26
+ version: 0.169.5
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: byebug
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 1.18.0
103
+ version: 1.23.0
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: 1.18.0
110
+ version: 1.23.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: simplecov
113
113
  requirement: !ruby/object:Gem::Requirement