@@ -22,8 +22,9 @@ Features:
2222
2323* Works with directly installed python or docker container (with python)
2424* Creates local (project-specific) virtualenv (project-specific python copy)
25- * Installs required pip modules (virtualenv by default, but could be global installation)
25+ * Installs required pip modules (venv by default (with fallback to virtualenv) , but could be global installation)
2626* Support requirements.txt file (limited by default)
27+ * Compatible with gradle configuration cache
2728* Could be used as basement for building plugins for specific python modules (like
2829[ mkdocs plugin] ( https://github.com/xvik/gradle-mkdocs-plugin ) )
2930
@@ -52,7 +53,7 @@ buildscript {
5253 mavenCentral()
5354 }
5455 dependencies {
55- classpath 'ru.vyarus:gradle-use-python-plugin:3 .0.0'
56+ classpath 'ru.vyarus:gradle-use-python-plugin:4 .0.0'
5657 }
5758}
5859apply plugin: 'ru.vyarus.use-python'
6263
6364``` groovy
6465plugins {
65- id 'ru.vyarus.use-python' version '3 .0.0'
66+ id 'ru.vyarus.use-python' version '4 .0.0'
6667}
6768```
6869
6970#### Compatibility
7071
71- Plugin compiled for java 8, compatible with java 11. Supports python 2 and 3 on windows and linux (macos).
72+ Plugin compiled for java 8, compatible with java 11, 17.
73+ Supports python 2 (not tested anymore, but should work) and 3 on windows and linux (macos)
7274
7375Gradle | Version
7476--------|-------
75- 5.3-8 | 3.0.0
76- 5-5.2 | 2.3.0
77+ 7.0 | 4.0.0
78+ 5.3 | [ 3.0.0] ( https://xvik.github.io/gradle-use-python-plugin/3.0.0/ )
79+ 5-5.2 | [ 2.3.0] ( https://xvik.github.io/gradle-use-python-plugin/2.3.0/ )
77804.x | [ 1.2.0] ( https://github.com/xvik/gradle-use-python-plugin/tree/1.2.0 )
7881
7982#### Snapshots
0 commit comments