Skip to content

Commit

Permalink
release-script: Merge branch 'release/v1.13.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
aoeftiger committed Jul 9, 2019
2 parents 36590ff + a356f72 commit d33d1f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PyHEADTAIL/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.13.3'
__version__ = '1.13.4'
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
import numpy as np
from PyHEADTAIL._version import __version__

import re, os, sys, subprocess
import numpy as np
import os, sys, subprocess

from setuptools import setup, Extension, find_packages

Expand Down Expand Up @@ -55,7 +54,10 @@
# Set up extension and build
cy_ext_options = {
"compiler_directives": {"profile": False, # SLOW!!!
"embedsignature": True},
"embedsignature": True,
"linetrace": False,
"language_level": sys.version_info[0],
},
"annotate": True,
}
cy_ext = [
Expand Down

1 comment on commit d33d1f9

@aoeftiger
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just for documentation, solution found via pandas-dev/pandas#23927

Please sign in to comment.