Merge pull request #918 from heroku/hatchet/update-default-python-check

Bump to match the default version
This commit is contained in:
Casey
2020-02-19 11:22:58 -05:00
committed by GitHub
2 changed files with 6 additions and 3 deletions
+5 -2
View File
@@ -3,12 +3,15 @@
# Master
- Download get-pip.py to tmpdir instead of root dir
--------------------------------------------------------------------------------
# 163 (2019-12-23)
- New pythons released:
Python 3.8.1, 3.7.6, 3.6.10 (CPython)
Beta Release: Pypy 2.7 and 3.6, version 7.2.0
--------------------------------------------------------------------------------
# 162 (2019-12-06)
- Bug fix: fragile sqlite3 install
+1 -1
View File
@@ -4,7 +4,7 @@ describe "Python!!!!!!!!!!!" do
it "🐍" do
Hatchet::Runner.new('python-getting-started', stack: DEFAULT_STACK).deploy do |app|
expect(app.output).to match(/Installing pip/)
expect(app.run('python -V')).to match(/3.6.9/)
expect(app.run('python -V')).to match(/3.6.10/)
end
end
end