Skip to content

Commit

Permalink
Merge pull request #20 from OBrink/dev-Kohulan
Browse files Browse the repository at this point in the history
Install pikachu via pypi, setup and tox updated for python 3.10
  • Loading branch information
OBrink authored Sep 26, 2022
2 parents 40a952e + 60606b3 commit 28f7e95
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
python-version: ['3.10']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors:
given-names: "Kohulan"
orcid: "https://orcid.org/0000-0003-1066-7792"
title: "RanDepict"
version: 1.0.8
version: 1.0.9
doi: 10.5281/zenodo.5205528
date-released: 2021-08-17
url: "https://github.com/OBrink/RanDepict"
Expand Down
1 change: 1 addition & 0 deletions Python_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ scikit-image
epam.indigo
jpype1
ipyplot
pikachu-chem>=1.0.7
2 changes: 1 addition & 1 deletion RanDepict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""

__version__ = "1.0.8"
__version__ = "1.0.9"

__all__ = [
"RanDepict",
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="RanDepict",
version="1.0.8",
version="1.0.9",
author="Otto Brinkhaus",
author_email="[email protected], [email protected]",
maintainer="Otto Brinkhaus, Kohulan Rajan",
Expand All @@ -28,7 +28,7 @@
"rdkit-pypi",
"imagecorruptions",
"pillow>=8.2.0",
"pikachu-chem @ git+https://github.com/OBrink/pikachu@accept-markush-structures#egg=pikachu-chem",
"pikachu-chem>=1.0.7",
],
package_data={"RanDepict": ["assets/*.*", "assets/*/*.*", "assets/*/*/*.*"]},
classifiers=[
Expand All @@ -37,6 +37,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
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,lint
envlist = py38,py39,py310,lint
requires = tox-conda

[testenv]
Expand Down Expand Up @@ -45,5 +45,3 @@ exclude =
RanDepict/__init__.py,
Tests/test_functions.py,



0 comments on commit 28f7e95

Please sign in to comment.