Skip to content

Commit c17713d

Browse files
Bump the ruby-dependencies group with 1 update (#1522)
* Bump the ruby-dependencies group with 1 update Bumps the ruby-dependencies group with 1 update: [rubocop](https://github.com/rubocop/rubocop). Updates `rubocop` from 1.58.0 to 1.59.0 - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.58.0...v1.59.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor dependency-group: ruby-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * Fix failing integration test This test was failing since the ordering of the installed packages list has for some reason changed. It's possible that it's dependant on filesystem order or some other non-determinism. Before: ``` Successfully installed gunicorn-20.1.0 local-package-pyproject-toml-0.0.1 local-package-setup-py-0.0.1 ``` After: ``` Successfully installed gunicorn-20.1.0 local-package-setup-py-0.0.1 local_package_pyproject_toml-0.0.1 ``` Either way, we don't really need to assert against this line, since it's not the important part of the test. GUS-W-14740442. --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ed Morley <[email protected]>
1 parent edcd18b commit c17713d

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ GEM
1717
rrrretry (~> 1)
1818
thor (~> 1)
1919
threaded (~> 0)
20-
json (2.7.0)
20+
json (2.7.1)
2121
language_server-protocol (3.17.0.3)
2222
moneta (1.0.0)
2323
multi_json (1.15.0)
24-
parallel (1.23.0)
24+
parallel (1.24.0)
2525
parallel_split_test (0.10.0)
2626
parallel (>= 0.5.13)
2727
rspec-core (>= 3.9.0)
@@ -35,7 +35,7 @@ GEM
3535
racc (1.7.3)
3636
rainbow (3.1.1)
3737
rate_throttle_client (0.1.2)
38-
regexp_parser (2.8.2)
38+
regexp_parser (2.8.3)
3939
rexml (3.2.6)
4040
rrrretry (1.0.0)
4141
rspec-core (3.12.2)
@@ -44,7 +44,7 @@ GEM
4444
diff-lcs (>= 1.2.0, < 2.0)
4545
rspec-support (~> 3.12.0)
4646
rspec-support (3.12.0)
47-
rubocop (1.58.0)
47+
rubocop (1.59.0)
4848
json (~> 2.3)
4949
language_server-protocol (>= 3.17.0)
5050
parallel (~> 1.10)

spec/hatchet/pip_spec.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@
9696
it 'rewrites .pth, .egg-link and finder paths correctly for hooks, later buildpacks, runtime and cached builds' do
9797
app.deploy do |app|
9898
expect(clean_output(app.output)).to match(Regexp.new(<<~REGEX, Regexp::MULTILINE))
99-
remote: Successfully installed gunicorn-20.1.0 local-package-pyproject-toml-0.0.1 local-package-setup-py-0.0.1
10099
remote: -----> Running post-compile hook
101100
remote: ==> .heroku/python/lib/python.*/site-packages/distutils-precedence.pth <==
102101
remote: .*
@@ -178,7 +177,6 @@
178177
app.commit!
179178
app.push!
180179
expect(clean_output(app.output)).to match(Regexp.new(<<~REGEX, Regexp::MULTILINE))
181-
remote: Successfully installed gunicorn-20.1.0 local-package-pyproject-toml-0.0.1 local-package-setup-py-0.0.1
182180
remote: -----> Running post-compile hook
183181
remote: ==> .heroku/python/lib/python.*/site-packages/distutils-precedence.pth <==
184182
remote: .*

0 commit comments

Comments
 (0)