Skip to content

Commit

Permalink
Version bump 2.0.1-->2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kohulan committed Oct 6, 2022
1 parent 29ba625 commit bc520b9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DECIMER/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

"""
DECIMER V2.0 Python Package.
DECIMER V2.0.2 Python Package.
============================
This repository contains DECIMER-V2,Deep lEarning for Chemical ImagE Recognition) project
Expand All @@ -23,7 +23,7 @@
"""

__version__ = "2.0.1"
__version__ = "2.0.2"

__all__ = [
"DECIMER",
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="decimer",
version="2.0.1",
version="2.0.2",
author="Kohulan Rajan",
author_email="kohulan.rajan@uni-jena.de",
maintainer="Kohulan Rajan",
Expand All @@ -31,6 +31,8 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
[tox]
envlist = py37,lint
envlist = py37, py38, py39, py310, lint
requires = tox-conda

[testenv]
setenv =
CONDA_DLL_SEARCH_MODIFICATION_ENABLE = 1
whitelist_externals = python
conda_deps =
pytest
conda_channels =
conda-forge
commands = pytest --basetemp="{envtmpdir}" {posargs}

[testenv:lint]
basepython = python3
Expand Down

0 comments on commit bc520b9

Please sign in to comment.