Skip to content

Commit

Permalink
Fix tests on main after six v0.17.0 release
Browse files Browse the repository at this point in the history
Since there was a new release and the test didn't pin version:
https://pypi.org/project/six/#history
  • Loading branch information
edmorley committed Dec 6, 2024
1 parent 1a318e0 commit 8103eea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/hatchet/pip_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
app.deploy do |app|
# The test fixture's requirements.txt is a symlink to a requirements file in a subdirectory in
# order to test that symlinked requirements files work in general and with cache invalidation.
File.write('requirements/prod.txt', 'six', mode: 'a')
File.write('requirements/prod.txt', 'six==1.17.0', mode: 'a')
app.commit!
app.push!
expect(clean_output(app.output)).to include(<<~OUTPUT)
Expand All @@ -94,11 +94,11 @@
remote: Collecting typing-extensions==4.12.2 (from -r requirements.txt (line 5))
remote: Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB)
remote: Collecting six (from -r requirements.txt (line 6))
remote: Downloading six-1.16.0-py2.py3-none-any.whl.metadata (1.8 kB)
remote: Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB)
remote: Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB)
remote: Downloading six-1.16.0-py2.py3-none-any.whl (11 kB)
remote: Downloading six-1.17.0-py2.py3-none-any.whl (11 kB)
remote: Installing collected packages: typing-extensions, six
remote: Successfully installed six-1.16.0 typing-extensions-4.12.2
remote: Successfully installed six-1.17.0 typing-extensions-4.12.2
OUTPUT
end
end
Expand Down

0 comments on commit 8103eea

Please sign in to comment.