commons-metrics 0.0.22__tar.gz → 0.0.23__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.
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/PKG-INFO +1 -1
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/__init__.py +1 -1
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/azure_devops_client.py +3 -3
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/github_api_client.py +3 -3
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics.egg-info/PKG-INFO +1 -1
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/setup.py +1 -1
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/LICENSE +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/README.md +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/cache_manager.py +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/commons_repos_client.py +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/database.py +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/date_utils.py +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/repositories.py +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/s3_file_manager.py +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/text_simplifier.py +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/update_design_components.py +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/util.py +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/variable_finder.py +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics.egg-info/SOURCES.txt +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics.egg-info/dependency_links.txt +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics.egg-info/requires.txt +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics.egg-info/top_level.txt +0 -0
- {commons_metrics-0.0.22 → commons_metrics-0.0.23}/setup.cfg +0 -0
|
@@ -12,4 +12,4 @@ from .text_simplifier import TextSimplifier
|
|
|
12
12
|
from .variable_finder import VariableFinder
|
|
13
13
|
|
|
14
14
|
__all__ = ['Util', 'DatabaseConnection', 'ComponentRepository', 'UpdateDesignSystemComponents', 'GitHubAPIClient', 'AzureDevOpsClient', 'S3FileManager', 'CacheManager', 'CommonsReposClient', 'DateUtils', 'TextSimplifier', 'VariableFinder']
|
|
15
|
-
__version__ = '0.0.
|
|
15
|
+
__version__ = '0.0.23'
|
|
@@ -5,7 +5,7 @@ import re
|
|
|
5
5
|
from typing import List, Dict, Optional
|
|
6
6
|
from requests.exceptions import HTTPError, Timeout, ConnectionError
|
|
7
7
|
import urllib3
|
|
8
|
-
from .commons_repos_client import
|
|
8
|
+
from .commons_repos_client import CommonsReposClient
|
|
9
9
|
|
|
10
10
|
# Suprimir warnings de SSL para Azure DevOps con certificados corporativos
|
|
11
11
|
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
|
|
@@ -383,11 +383,11 @@ class AzureDevOpsClient:
|
|
|
383
383
|
if platform == 'mobile':
|
|
384
384
|
config_file = 'pubspec.yaml'
|
|
385
385
|
default_package_name = 'bds_mobile'
|
|
386
|
-
extract_version_method = extract_package_version_from_pubspec
|
|
386
|
+
extract_version_method = CommonsReposClient.extract_package_version_from_pubspec
|
|
387
387
|
else: # web
|
|
388
388
|
config_file = 'package.json'
|
|
389
389
|
default_package_name = '@bancolombia/design-system-web'
|
|
390
|
-
extract_version_method = extract_package_version_from_package_json
|
|
390
|
+
extract_version_method = CommonsReposClient.extract_package_version_from_package_json
|
|
391
391
|
|
|
392
392
|
# Usar nombre de paquete por defecto si no se proporciona
|
|
393
393
|
package_name = design_system_name or default_package_name
|
|
@@ -2,7 +2,7 @@ import requests
|
|
|
2
2
|
import base64
|
|
3
3
|
from typing import List, Dict, Optional
|
|
4
4
|
import os
|
|
5
|
-
from .commons_repos_client import
|
|
5
|
+
from .commons_repos_client import CommonsReposClient
|
|
6
6
|
|
|
7
7
|
class GitHubAPIClient:
|
|
8
8
|
"""
|
|
@@ -207,11 +207,11 @@ class GitHubAPIClient:
|
|
|
207
207
|
if platform == 'mobile':
|
|
208
208
|
config_file = 'pubspec.yaml'
|
|
209
209
|
default_package_name = 'bds_mobile'
|
|
210
|
-
extract_version_method = extract_package_version_from_pubspec
|
|
210
|
+
extract_version_method = CommonsReposClient.extract_package_version_from_pubspec
|
|
211
211
|
else: # web
|
|
212
212
|
config_file = 'package.json'
|
|
213
213
|
default_package_name = '@bancolombia/design-system-web'
|
|
214
|
-
extract_version_method = extract_package_version_from_package_json
|
|
214
|
+
extract_version_method = CommonsReposClient.extract_package_version_from_package_json
|
|
215
215
|
|
|
216
216
|
# Usar nombre de paquete por defecto si no se proporciona
|
|
217
217
|
package_name = design_system_name or default_package_name
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='commons_metrics',
|
|
5
|
-
version='0.0.
|
|
5
|
+
version='0.0.23',
|
|
6
6
|
description='A simple library for basic statistical calculations',
|
|
7
7
|
#long_description=open('USAGE.md').read(),
|
|
8
8
|
#long_description_content_type='text/markdown',
|
|
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
|
{commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics/update_design_components.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{commons_metrics-0.0.22 → commons_metrics-0.0.23}/commons_metrics.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|