10 lines
234 B
YAML
10 lines
234 B
YAML
- name: Set PyCharm version
|
|
set_fact:
|
|
target_version: "2025.1.3.1"
|
|
|
|
- name: Install PyCharm
|
|
win_chocolatey:
|
|
name: pycharm-community
|
|
version: "{{ target_version }}"
|
|
|
|
# TODO set default project directory to H:\something
|