Skip to content

Commit

Permalink
bumping to python3.7+ (#29)
Browse files Browse the repository at this point in the history
* bump to python3.7+

* prepare release

* update wandb example
  • Loading branch information
clementchadebec committed Jul 5, 2022
1 parent 09ae686 commit 79ea1f0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[report]
exclude_lines =
# pragma: no cover
pragma: no cover
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<img src='https://badge.fury.io/py/pythae.svg' alt='Python' />
</a>
<a>
<img src='https://img.shields.io/badge/python-3.6%7C3.7%7C3.8-blueviolet' alt='Python' />
<img src='https://img.shields.io/badge/python-3.7%7C3.8%7C3.9%2B-blueviolet' alt='Python' />
</a>
<a href='https://pythae.readthedocs.io/en/latest/?badge=latest'>
<img src='https://readthedocs.org/projects/pythae/badge/?version=latest' alt='Documentation Status' />
Expand Down
4 changes: 2 additions & 2 deletions examples/notebooks/wandb_experiment_monitoring.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ line_length = 88

[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
target-version = ['py37', 'py38', 'py39']
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -37,5 +36,5 @@
"dataclasses>=0.6",
"pickle5"
],
python_requires=">=3.6",
python_requires=">=3.7",
)

0 comments on commit 79ea1f0

Please sign in to comment.