From edb7004a280a45aa148499d581bab9a57ee22ded Mon Sep 17 00:00:00 2001 From: Joe Kutner Date: Tue, 21 Apr 2020 16:42:56 -0500 Subject: [PATCH] Update hatchet tests to support latest version of Python (#952) * Update hatchet tests to support latest version of Python * Empty commit to trigger CI --- CHANGELOG.md | 1 + spec/hatchet/python_spec.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17072eb..5908df7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ # Master - Bugfix: Caching on subsequent redeploys +- Update tests to support latest version of Python -------------------------------------------------------------------------------- diff --git a/spec/hatchet/python_spec.rb b/spec/hatchet/python_spec.rb index 24c2d3b..6be0da5 100644 --- a/spec/hatchet/python_spec.rb +++ b/spec/hatchet/python_spec.rb @@ -36,7 +36,7 @@ describe "Default Python Deploy" do expect(app.output).to_not match("Requirements file has been changed, updating cache") expect(app.output).to_not match("No dependencies found, preparing to install") - expect(app.run('python -V')).to match(/3.7.3/) + expect(app.run('python -V')).to match(/3.7.6/) end end end