delfinance-python-sdk 0.0.2__tar.gz → 0.0.4__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.
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/.Jenkinsfiles/master.groovy +1 -1
- {delfinance_python_sdk-0.0.2/src/delfinance_python_sdk.egg-info → delfinance_python_sdk-0.0.4}/PKG-INFO +1 -1
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/main.py +1 -1
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4/src/delfinance_python_sdk.egg-info}/PKG-INFO +1 -1
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/.env.example +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/.gitignore +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/Dockerfile +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/Jenkinsfile +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/README.md +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/docker-compose.yml +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/openapi/openapi.yaml +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/openapi/swagger.html +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/requirements.txt +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/setup.cfg +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/setup.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/__init__.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/abstractions/enums/__init__.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/abstractions/enums/environment.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/abstractions/startup/__init__.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/abstractions/startup/delfinance_client.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/transfers/dto/__init__.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/transfers/dto/transfer_dto.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/transfers/interfaces/__init__.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/transfers/interfaces/itransfers_service.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/transfers/responses/__init__.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/transfers/responses/get_transfer_response.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/transfers/services/__init__.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/transfers/services/transfers_service.py +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance_python_sdk.egg-info/SOURCES.txt +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance_python_sdk.egg-info/dependency_links.txt +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance_python_sdk.egg-info/requires.txt +0 -0
- {delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance_python_sdk.egg-info/top_level.txt +0 -0
|
@@ -40,7 +40,7 @@ def pipelineRoll() {
|
|
|
40
40
|
|
|
41
41
|
stage('Generating Artifact') {
|
|
42
42
|
echo "Python artifact will be generated"
|
|
43
|
-
sh 'git tag $VERSION'
|
|
43
|
+
sh 'git tag $VERSION || true'
|
|
44
44
|
sh 'rm -rf /dist'
|
|
45
45
|
sh 'pip install -U pip setuptools wheel'
|
|
46
46
|
sh 'pip install -r requirements.txt'
|
|
@@ -4,7 +4,7 @@ import json
|
|
|
4
4
|
from dotenv import load_dotenv
|
|
5
5
|
from flask import Flask
|
|
6
6
|
|
|
7
|
-
# Add src to path so we can import delfinance
|
|
7
|
+
# Add src to path so we can import delfinance
|
|
8
8
|
sys.path.append(os.path.join(os.path.dirname(__file__), 'src'))
|
|
9
9
|
|
|
10
10
|
from delfinance.abstractions.startup.delfinance_client import DelfinanceClient
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{delfinance_python_sdk-0.0.2 → delfinance_python_sdk-0.0.4}/src/delfinance/transfers/dto/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|