Skip to content

Commit

Permalink
Merge pull request #43 from ecrl/dev
Browse files Browse the repository at this point in the history
Wrapper function now defaults to retaining compound order
  • Loading branch information
tjkessler committed Dec 10, 2022
2 parents 034b798 + fde9783 commit 4b18d4a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pool:
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
versionSpec: '3.8'
architecture: 'x64'

- script: |
Expand All @@ -23,4 +23,4 @@ steps:
- script: |
cd tests
python test.py
displayName: 'unittest'
displayName: 'Unit Testing'
2 changes: 1 addition & 1 deletion padelpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .wrapper import padeldescriptor
from .functions import from_mdl, from_smiles, from_sdf
__version__ = '0.1.10'
__version__ = '0.1.13'
2 changes: 1 addition & 1 deletion padelpy/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 1, 12, "")
VERSION = (0, 1, 13, "")

__version__ = ".".join(map(str, VERSION[:-1]))
__release__ = ".".join(map(str, VERSION))
2 changes: 1 addition & 1 deletion padelpy/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def padeldescriptor(maxruntime: int = -1,
maxcpdperfile: int = 0,
removesalt: bool = False,
retain3d: bool = False,
retainorder: bool = False,
retainorder: bool = True,
standardizenitro: bool = False,
standardizetautomers: bool = False,
tautomerlist: str = None,
Expand Down

0 comments on commit 4b18d4a

Please sign in to comment.