You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Disable hub mode for new versions, Update pyjnius to 1.6.1 and improve documentation (#74)
* Update documentation
* Update pyjnius to 1.6.1
* Add "4.21.1" "4.23.2" "4.24.0" "4.25.1" lb versions to testing list
* Disable hub mode argument for new versions >= "4.22.0"
* remove 2.25.x version from tests
Use [liquibase](http://www.liquibase.org/)with python. Java integration is done using Java Native Interface (JNI) using [pyjnius](https://github.com/kivy/pyjnius)
6
+
A Python module to use [liquibase](http://www.liquibase.org/)in python, using the Java Native Interface (JNI).
Python library is using `LiquibaseCommandLine` reflection class which uses/equivalent `LiquibaseCommandLine` java class.
57
-
liquibase calls are executed by `LiquibaseCommandLine.execute(liquibaseargs)` method by passing given python arguments to java class.
58
56
59
-
python java integration class using pyjnius(using the Java Native Interface (JNI))
57
+
Python library is based on `LiquibaseCommandLine` Python class. It is reflection of Java `LiquibaseCommandLine` class.
58
+
liquibase calls are passed to Java `LiquibaseCommandLine.execute(liquibaseargs)` method.
59
+
60
+
[Pyjnius](https://github.com/kivy/pyjnius) is a Python library for accessing Java classes. It either starts a new JVM inside the process, or retrieves the already surrounding JVM. To read more on pyjnius please see https://pyjnius.readthedocs.io/en/latest/
0 commit comments