pyconverters-openai_vision 0.5.11__tar.gz → 0.5.13__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/Jenkinsfile +13 -7
  2. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/PKG-INFO +1 -1
  3. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/pyconverters_openai_vision/__init__.py +1 -1
  4. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/setup.py +1 -1
  5. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/.dockerignore +0 -0
  6. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/.gitignore +0 -0
  7. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/Dockerfile +0 -0
  8. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/README.md +0 -0
  9. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/bumpversion.py +0 -0
  10. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/pyconverters_openai_vision/openai_utils.py +0 -0
  11. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/pyconverters_openai_vision/openai_vision.py +0 -0
  12. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/pyproject.toml +0 -0
  13. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/tests/__init__.py +0 -0
  14. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/tests/data/Sodexo_URD_2023_FR - 4p.pdf +0 -0
  15. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/tests/data/colducoq.jpg +0 -0
  16. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/tests/data/webinar.png +0 -0
  17. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/tests/test_openai_vision.py +0 -0
  18. {pyconverters_openai_vision-0.5.11 → pyconverters_openai_vision-0.5.13}/tox.ini +0 -0
@@ -1,4 +1,17 @@
1
+ #!groovy
2
+ // to test groovy snippets online:
3
+ // https://www.jdoodle.com/execute-groovy-online
4
+
1
5
  pipeline {
6
+
7
+ agent none
8
+
9
+ triggers {
10
+ upstream(upstreamProjects: 'pymultirole_plugins/' + BRANCH_NAME.replaceAll('/', '%2F'),\
11
+ threshold: hudson.model.Result.SUCCESS)
12
+ }
13
+
14
+ // variables declared in environment block can not be changed in any steps/stages
2
15
  environment {
3
16
  PATH_HOME = '/home/jenkins'
4
17
  TEST_REPORT_DIR = '/root/test-reports'
@@ -10,13 +23,6 @@ pipeline {
10
23
  MINOR_VERSION = '5'
11
24
  }
12
25
 
13
- agent none
14
-
15
- triggers {
16
- upstream(upstreamProjects: 'pymultirole_plugins/' + BRANCH_NAME.replaceAll('/', '%2F'),\
17
- threshold: hudson.model.Result.SUCCESS)
18
- }
19
-
20
26
  stages {
21
27
  stage('Catch build termination') {
22
28
  agent {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyconverters-openai_vision
3
- Version: 0.5.11
3
+ Version: 0.5.13
4
4
  Summary: OpenAIVision converter
5
5
  Home-page: https://kairntech.com/
6
6
  Author: Olivier Terrier
@@ -1,2 +1,2 @@
1
1
  """OpenAIVision converter"""
2
- __version__ = "0.5.11"
2
+ __version__ = "0.5.13"
@@ -43,7 +43,7 @@ entry_points = \
43
43
  'pyconverters_openai_vision.openai_vision:OpenAIVisionConverter']}
44
44
 
45
45
  setup(name='pyconverters-openai_vision',
46
- version='0.5.11',
46
+ version='0.5.13',
47
47
  description='OpenAIVision converter',
48
48
  author='Olivier Terrier',
49
49
  author_email='olivier.terrier@kairntech.com',