1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-05-29 06:30:52 +00:00

ci: Update Python to 3.7.5 (#628)

This commit is contained in:
Matan Kushner 2019-11-05 16:23:33 +09:00 committed by GitHub
parent 0c7492a8da
commit 4895276b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View File

@ -117,7 +117,7 @@ jobs:
# Install Python at a fixed version
- uses: actions/setup-python@v1
with:
python-version: "3.7.4"
python-version: "3.7.5"
# Install dotnet at a fixed version
- uses: actions/setup-dotnet@v1

View File

@ -38,7 +38,7 @@ RUN curl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-ins
RUN ruby --version
# Install Python
ENV PYTHON_VERSION 3.7.4
ENV PYTHON_VERSION 3.7.5
ENV PYENV_ROOT /home/nonroot/.pyenv
ENV PATH $PYENV_ROOT/bin:$PYENV_ROOT/shims:$PATH
RUN curl https://pyenv.run | bash \

View File

@ -18,7 +18,7 @@ fn folder_with_python_version() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.4"));
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5"));
assert_eq!(expected, actual);
Ok(())
}
@ -35,7 +35,7 @@ fn folder_with_requirements_txt() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.4"));
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5"));
assert_eq!(expected, actual);
Ok(())
}
@ -52,7 +52,7 @@ fn folder_with_pyproject_toml() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.4"));
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5"));
assert_eq!(expected, actual);
Ok(())
}
@ -69,7 +69,7 @@ fn folder_with_pipfile() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.4"));
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5"));
assert_eq!(expected, actual);
Ok(())
}
@ -86,7 +86,7 @@ fn folder_with_tox() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.4"));
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5"));
assert_eq!(expected, actual);
Ok(())
}
@ -103,7 +103,7 @@ fn folder_with_py_file() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.4"));
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5"));
assert_eq!(expected, actual);
Ok(())
}
@ -120,7 +120,7 @@ fn with_virtual_env() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.4 (my_venv)"));
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5 (my_venv)"));
assert_eq!(expected, actual);
Ok(())
}
@ -137,7 +137,7 @@ fn with_active_venv() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.4 (my_venv)"));
let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5 (my_venv)"));
assert_eq!(expected, actual);
Ok(())
}