Commit 196dbf54 authored by Mathieu Porras's avatar Mathieu Porras
Browse files

Merge branch '2-fix_Missing_git_package_for_py-release_job' into 'master'

fix: "Missing git package for py-release job"

Closes #2

See merge request to-be-continuous/python!2
parents 9c97675b 082f3083
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ The Python template uses some global configuration used throughout all jobs.

| Name                 | description                                                                                                      | default value      |
| -------------------- | ---------------------------------------------------------------------------------------------------------------- | ------------------ |
| `PYTHON_IMAGE`       | The Docker image used to run Python. **It is highly recommended to set the specific version your project needs** | `python:3-slim`    |
| `PYTHON_IMAGE`       | The Docker image used to run Python. **It is highly recommended to set the specific version your project needs** | `python:3`    |
| `PIP_INDEX_URL`      | Python repository url                                                                                            | _none_             |
| `PYTHON_PROJECT_DIR` | Python project root directory                                                                                    | `.`                |
| `REQUIREMENTS_FILE`  | Path to requirements file _(relative to `$PYTHON_PROJECT_DIR`)_                                                  | `requirements.txt` |
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
    {
      "name": "PYTHON_IMAGE",
      "description": "The Docker image used to run Python - **it is highly recommended to set the specific version your project needs**",
      "default": "python:3-slim"
      "default": "python:3"
    },
    {
      "name": "PYTHON_PROJECT_DIR",
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ variables:
  # Change pip's cache directory to be inside the project directory since we can
  # only cache local items.
  PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
  PYTHON_IMAGE: python:3-slim
  PYTHON_IMAGE: python:3
  # Default Python project root directory
  PYTHON_PROJECT_DIR: .
  REQUIREMENTS_FILE: requirements.txt