Skip to content

Commit

Permalink
Bump to v0.8.21
Browse files Browse the repository at this point in the history
  • Loading branch information
tgourdel committed Dec 4, 2024
1 parent 78ea116 commit 289b478
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion amphi-etl/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN chown -R $NB_UID:$NB_GID /home/amphi
RUN apt-get update && apt-get install -y --no-install-recommends \
&& python3 -m pip install --upgrade pip setuptools wheel \
&& python3 -m pip install --no-cache-dir pandas==2.2.1 numpy \
jupyterlab==4.2.5 jupyterlab-amphi==0.8.20 \
jupyterlab==4.2.5 jupyterlab-amphi==0.8.21 \
sqlalchemy==2.0.4 python-dotenv \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion amphi-etl/amphi/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is auto-generated by Hatchling. As such, do not:
# - modify
# - track in version control e.g. be sure to add to .gitignore
__version__ = VERSION = '0.8.20'
__version__ = VERSION = '0.8.21'
2 changes: 1 addition & 1 deletion amphi-etl/lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"npmClient": "yarn",
"version": "0.8.20"
"version": "0.8.21"
}
2 changes: 1 addition & 1 deletion amphi-etl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@amphi/amphi-etl",
"version": "0.8.20",
"version": "0.8.21",
"keywords": [
"amphi",
"etl",
Expand Down
4 changes: 2 additions & 2 deletions amphi-etl/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
jupyterlab==4.2.5
jupyterlab-amphi==0.8.20
jupyterlab==4.3.2
jupyterlab-amphi==0.8.21
pandas==2.2.1
# ../jupyterlab-amphi
.
6 changes: 3 additions & 3 deletions amphi-etl/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ def collect_files(src_dir, dest_dir):

setup(
name='amphi-etl',
version='0.8.20',
version='0.8.21',
description='Open-source and Python-based ETL',
author='Thibaut Gourdel',
author_email='[email protected]',
license='ELv2',
install_requires=[
'jupyterlab==4.2.5',
'jupyterlab-amphi==0.8.20',
'jupyterlab==4.3.2',
'jupyterlab-amphi==0.8.21',
'pandas==2.2.1'
],
keywords=[], # Added an empty list for keywords to resolve the dynamic 'keywords' issue.
Expand Down
2 changes: 1 addition & 1 deletion jupyterlab-amphi/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""source of truth for ``amphi``` version."""
__version__ = "0.8.20"
__version__ = "0.8.21"
2 changes: 1 addition & 1 deletion jupyterlab-amphi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@amphi/jupyterlab-amphi",
"version": "0.8.20",
"version": "0.8.21",
"keywords": [
"amphi",
"etl",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class CsvFileInput extends BaseCoreComponent {
label: "File path",
id: "filePath",
placeholder: "Type file name or use '*' for patterns",
tooltip: "Provide a single CSV file path or use '*' for matching multiple files. Extensions accepted: .csv, .tsv, .txt.",
tooltip: "Provide a single CSV file path or use '*' for matching multiple files. Extensions accepted: .csv, .tsv, .txt. Can also read CSV files compressed as .gz, .bz2, .zip, .xz, .zst.",
validation: "^(.*(\\.csv|\\.tsv|\\.txt))$|^(.*\\*)$"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export const KeyValueForm: React.FC<KeyValueFormProps> = ({ field, handleChange,

setKeyValuePairs(updatedKeyValuePairs);
handleChange(updatedKeyValuePairs, field.id);

};

return (
Expand Down

0 comments on commit 289b478

Please sign in to comment.