Skip to content

Commit

Permalink
Merge pull request #97 from telefonicasc/task/prepare_0.14.0
Browse files Browse the repository at this point in the history
Step: 0.13.0.post -> 0.14.0
  • Loading branch information
arcosa authored Dec 13, 2024
2 parents 8e4dbbb + 712d292 commit 7ea79cb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion etls/hello-world/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Include here the dependencies your ETL needs
#tc_etl_lib==0.13.0
#tc_etl_lib==0.14.0
10 changes: 6 additions & 4 deletions python-lib/tc_etl_lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ Para instalar la última versión:

Para instalar una versión concreta:

pip install tc_etl_lib==0.13.0
pip install tc_etl_lib==0.14.0

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

tc_etl_lib==0.13.0
tc_etl_lib==0.14.0

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

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

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

pip install ./tc_etl_lib/dist/tc_etl_lib-0.13.0.tar.gz
pip install ./tc_etl_lib/dist/tc_etl_lib-0.14.0.tar.gz

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.

Expand Down Expand Up @@ -508,11 +508,13 @@ TOTAL 403 221 45%

## Changelog

0.14.0 (December 13th, 2024)

- Add: support for Python 3.12 (keeping also compatibility with Python 3.8)
- Fix: upgrade requests from 2.21.0 to 2.25.1 (for Python 3.8 case)
- Fix: upgrade urllib3 from 1.24.1 to 1.26.16 (for Python 3.8 case)

0.13.0 (Jun 26th, 2024)
0.13.0 (June 26th, 2024)

- 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))

Expand Down
2 changes: 1 addition & 1 deletion python-lib/tc_etl_lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

HERE = pathlib.Path(__file__).parent

VERSION = '0.13.0.post'
VERSION = '0.14.0'
PACKAGE_NAME = 'tc_etl_lib'
AUTHOR = ''
AUTHOR_EMAIL = ''
Expand Down

0 comments on commit 7ea79cb

Please sign in to comment.