From 79ea1f0dd605a687070b64247919d325dbcdb07d Mon Sep 17 00:00:00 2001 From: clementchadebec <47564971+clementchadebec@users.noreply.github.com> Date: Tue, 5 Jul 2022 09:55:02 +0200 Subject: [PATCH] bumping to python3.7+ (#29) * bump to python3.7+ * prepare release * update wandb example --- .coveragerc | 2 +- README.md | 2 +- examples/notebooks/wandb_experiment_monitoring.ipynb | 4 ++-- pyproject.toml | 2 +- setup.py | 5 ++--- 5 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.coveragerc b/.coveragerc index 641c99ce..5d20cac0 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,3 +1,3 @@ [report] exclude_lines = - # pragma: no cover \ No newline at end of file + pragma: no cover \ No newline at end of file diff --git a/README.md b/README.md index 6675306f..551494cf 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Python - Python + Python Documentation Status diff --git a/examples/notebooks/wandb_experiment_monitoring.ipynb b/examples/notebooks/wandb_experiment_monitoring.ipynb index 57f33521..cb84ef7f 100644 --- a/examples/notebooks/wandb_experiment_monitoring.ipynb +++ b/examples/notebooks/wandb_experiment_monitoring.ipynb @@ -130,8 +130,8 @@ "wandb_cb.setup(\n", " training_config=training_config, # training config\n", " model_config=model_config, # model config\n", - " project_name=\"test\", # specify your wandb project\n", - " entity_name=\"benchmark_team\", # specify your wandb entity\n", + " project_name=\"your_wandb_project\", # specify your wandb project\n", + " entity_name=\"your_wandb_entity\", # specify your wandb entity\n", ")\n", "\n", "callbacks.append(wandb_cb) # Add it to the callbacks list" diff --git a/pyproject.toml b/pyproject.toml index a117282e..881cbf86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,4 +8,4 @@ line_length = 88 [tool.black] line-length = 88 -target-version = ['py36', 'py37', 'py38'] \ No newline at end of file +target-version = ['py37', 'py38', 'py39'] \ No newline at end of file diff --git a/setup.py b/setup.py index 3b4dd82b..aab158d9 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="pythae", - version="0.0.2", + version="0.0.3", author="Clement Chadebec (HekA team INRIA)", author_email="clement.chadebec@inria.fr", description="Unifying Generative Autoencoders in Python", @@ -15,7 +15,6 @@ project_urls={"Bug Tracker": "https://github.com/clementchadebec/benchmark_VAE/issues"}, classifiers=[ "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -37,5 +36,5 @@ "dataclasses>=0.6", "pickle5" ], - python_requires=">=3.6", + python_requires=">=3.7", )