Skip to content

Commit

Permalink
Merge pull request #41 from chdominguez/master
Browse files Browse the repository at this point in the history
Fix compatibility with newer Cython
  • Loading branch information
AlbertCS authored Oct 10, 2023
2 parents bfb8943 + 5d8a14a commit 9b1d67d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AdaptivePELE/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.7.3"
__version__ = "1.7.4"
name = "AdaptivePELE"
2 changes: 1 addition & 1 deletion AdaptivePELE/atomset/SymmetryContactMapEvaluator.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import unicode_literals
import atomset
#import atomset
import numpy as np
cimport cython
cimport numpy as np
Expand Down
1 change: 1 addition & 0 deletions AdaptivePELE/atomset/atomset.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: language_level=2
from __future__ import unicode_literals
import numpy as np
import re
Expand Down
1 change: 1 addition & 0 deletions AdaptivePELE/freeEnergies/utils.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: language_level=2
import numpy as np
from io import open
cimport cython
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

[//] : # ## [1.x] - Unreleased

## [1.7.4] - 2023-09-29

### Bug fixes:

- Fix compatibility with latest Cython version

## [1.7.3] - 2023-01-31

### Bug fixes:
Expand Down

0 comments on commit 9b1d67d

Please sign in to comment.