Skip to content

Commit 7ea79cb

Browse files
authored
Merge pull request #97 from telefonicasc/task/prepare_0.14.0
Step: 0.13.0.post -> 0.14.0
2 parents 8e4dbbb + 712d292 commit 7ea79cb

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

etls/hello-world/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Include here the dependencies your ETL needs
2-
#tc_etl_lib==0.13.0
2+
#tc_etl_lib==0.14.0

python-lib/tc_etl_lib/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ Para instalar la última versión:
4545

4646
Para instalar una versión concreta:
4747

48-
pip install tc_etl_lib==0.13.0
48+
pip install tc_etl_lib==0.14.0
4949

5050
También se puede añadir la depedencia a `requirements.txt`:
5151

52-
tc_etl_lib==0.13.0
52+
tc_etl_lib==0.14.0
5353

5454
he instalar (junto con el resto de depedencias) con el habitual:
5555

@@ -59,7 +59,7 @@ he instalar (junto con el resto de depedencias) con el habitual:
5959

6060
La librería de tipo `tc_etl_lib-<version>.tar.gz`, se puede instalar en cualquier entorno python con el siguiente comando:
6161

62-
pip install ./tc_etl_lib/dist/tc_etl_lib-0.13.0.tar.gz
62+
pip install ./tc_etl_lib/dist/tc_etl_lib-0.14.0.tar.gz
6363

6464
En este caso, la librería está disponible en ese directorio. Si estuviera disponible en cualquier otra ruta, se debería de reemplazar por la ruta relativa o absoluta correspondiente. Si se quiere instalar sobre un entorno venv, primero has de activar el entorno venv y luego ejecutar el comando de instalación de la librería.
6565

@@ -508,11 +508,13 @@ TOTAL 403 221 45%
508508

509509
## Changelog
510510

511+
0.14.0 (December 13th, 2024)
512+
511513
- Add: support for Python 3.12 (keeping also compatibility with Python 3.8)
512514
- Fix: upgrade requests from 2.21.0 to 2.25.1 (for Python 3.8 case)
513515
- Fix: upgrade urllib3 from 1.24.1 to 1.26.16 (for Python 3.8 case)
514516

515-
0.13.0 (Jun 26th, 2024)
517+
0.13.0 (June 26th, 2024)
516518

517519
- Fix: anchor numpy version to 1.24.4 (latest compatible with python 3.8 and pandas < 2.2.2) ([#89](https://github.com/telefonicasc/etl-framework/issues/89))
518520

python-lib/tc_etl_lib/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
HERE = pathlib.Path(__file__).parent
2525

26-
VERSION = '0.13.0.post'
26+
VERSION = '0.14.0'
2727
PACKAGE_NAME = 'tc_etl_lib'
2828
AUTHOR = ''
2929
AUTHOR_EMAIL = ''

0 commit comments

Comments
 (0)