Skip to content

Commit

Permalink
Bump version: 1.0.1 → 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucashervier committed Jul 18, 2023
1 parent adc363b commit 92b47f2
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 37 deletions.
68 changes: 33 additions & 35 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.1.0
commit = True
tag = True

Expand All @@ -8,13 +8,13 @@ tag = True
[bumpversion:file:xplique/__init__.py]

[pylint]
disable =
R0903, # allows to expose only one public method
R0914, # allow multiples local variables
E0401, # pending issue with pylint see pylint#2603
E1123, # issues between pylint and tensorflow since 2.2.0
E1120, # see pylint#3613
C3001, # lambda function as variable
disable =
R0903, # allows to expose only one public method
R0914, # allow multiples local variables
E0401, # pending issue with pylint see pylint#2603
E1123, # issues between pylint and tensorflow since 2.2.0
E1120, # see pylint#3613
C3001, # lambda function as variable
max-line-length = 100
max-args = 12

Expand All @@ -28,36 +28,34 @@ ignore-imports = no
envlist = py{37,38,39,310}-lint, py{37,38,39,310}-tf{21,25,28,211}, py{38,39,310}-tf{25,28,211}-torch{111,113,200}

[testenv:py{37,38,39,310}-lint]
commands =
python -m pylint xplique
commands =
python -m pylint xplique

[testenv:py{37,38,39,310}-tf{31,25,28,211}]
deps =
pytest
pytest-cov
tf21: tensorflow ~= 2.1.0
tf25: tensorflow ~= 2.5.0
tf28: tensorflow ~= 2.8.0
tf211: tensorflow ~= 2.11.0
-rrequirements.txt

commands =
pytest --cov=xplique --ignore=xplique/wrappers/pytorch.py --ignore=tests/wrappers/test_pytorch_wrapper.py {posargs}
deps =
pytest
pytest-cov
tf21: tensorflow ~= 2.1.0
tf25: tensorflow ~= 2.5.0
tf28: tensorflow ~= 2.8.0
tf211: tensorflow ~= 2.11.0
-rrequirements.txt
commands =
pytest --cov=xplique --ignore=xplique/wrappers/pytorch.py --ignore=tests/wrappers/test_pytorch_wrapper.py {posargs}

[testenv:py{38,39,310}-tf{25,28,211}-torch{111,113,200}]
deps =
pytest
pytest-cov
tf25: tensorflow ~= 2.5.0
tf28: tensorflow ~= 2.8.0
tf211: tensorflow ~= 2.11.0
torch111: torch == 1.11.0
torch113: torch == 1.13.0
torch200: torch
-rrequirements.txt

commands =
pytest --cov=xplique/wrappers/pytorch tests/wrappers/test_pytorch_wrapper.py
deps =
pytest
pytest-cov
tf25: tensorflow ~= 2.5.0
tf28: tensorflow ~= 2.8.0
tf211: tensorflow ~= 2.11.0
torch111: torch == 1.11.0
torch113: torch == 1.13.0
torch200: torch
-rrequirements.txt
commands =
pytest --cov=xplique/wrappers/pytorch tests/wrappers/test_pytorch_wrapper.py

[mypy]
check_untyped_defs = True
Expand All @@ -67,4 +65,4 @@ warn_unused_configs = True
ignore_missing_imports = True

[mypy-sklearn.*]
ignore_missing_imports = True
ignore_missing_imports = True
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="Xplique",
version="1.0.1",
version="1.1.0",
description="Explanations toolbox for Tensorflow 2",
long_description=README,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion xplique/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
techniques
"""

__version__ = '1.0.1'
__version__ = '1.1.0'

from . import attributions
from . import concepts
Expand Down

0 comments on commit 92b47f2

Please sign in to comment.