Hi,
I am using the following orb: CircleCI Developer Hub - circleci/python
I am trying to determine how to specify the Python version that is not Python3.8. Is this possible? It says there is a parameter “tag” added, but I have tried various configurations to add that and they all give me an error. Here is my config file.
version: 2.1
orbs:
python: circleci/python@2.1.1
jobs:
build_doc:
executor: python/default
steps:
- restore_cache:
name: Restore .git
keys:
- source-cache-graphs
- checkout
- run: ...