Sergo

Results 11 comments of Sergo

I have the same problem with merging list of sting with last version of dynaconf 3.1.7 1.toml ``` dynaconf_merge = true [development] mas = ["1"] ``` 2.toml ``` dynaconf_merge =...

Dear @zvezdan, could you inform, are you planing to post the latest versions pygradle in gradle plugin repository? A lot of time has passed since version 0.9.11.

It is possible to download last version of plugin from jcenter. ``` buildscript { repositories { jcenter() } dependencies { classpath "com.linkedin.pygradle:pygradle-plugin:0.12.10" } } apply plugin: "com.linkedin.python-pex" ```

After researching the plugin code, my solution is next code :) ``` afterEvaluate { realBuildPex.setPexOptions(["--entry=tax.main"]) } ```

To use python version 3.6, you can set this in your build.gradle. ``` python { details { details.pythonVersion = '3.6' } } ```

Just add in your build.gradle path to your ivy repository. repositories { ivy { url 'http://XX.XX.XX.XX/nexus/repository/pypi-external/' layout 'pattern', { artifact '[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]' ivy '[organisation]/[module]/[revision]/[module]-[revision].ivy' m2compatible = true } } }

HI ! @Kindrat, Can you explain, what type of repository have you added in Nexus? As I understand, the Nexus supports only Maven repository (not Ivy).

@Kindrat, I didn't find in nexus documentation [supported type](https://help.sonatype.com/repomanager3/supported-formats#app) information about Ivy format. What "existing Nexus" repository do you mean ? What type of repository in Nexus allow to upload...

@Kindrat, thanks for your comment. PyPI repo supports in Nexus since version 3.0.2. OK, I have to upgrade our Nexus. Anyway, if we want to build private repository, we have...

@Kindrat, Can you briefly explain, how to create PyPI repository, that allow to attach ivy files to main artifactory in Nexus 3?