Skip to content

Commit

Permalink
v1.1.2 - drop cython-generated .c/.cpp files from the sdist (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
golobor authored Dec 11, 2024
1 parent a110cf5 commit c3d300a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 1.1.2 (2024-12-11) ###

Bugfixes:
- Drop Cython-generated .c/.cpp files from the sdist

### 1.1.1 (2024-12-10) ###

Bugfixes:
Expand Down
8 changes: 5 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
include CHANGES.md
include README.md
include requirements.txt
include requirements_doc.txt
include CHANGES.md
include LICENSE
include pyproject.toml
include pytest.ini

graft tests
graft doc
Expand All @@ -11,6 +11,8 @@ prune doc/_templates

global-include *.pyx
global-include *.pxd
global-exclude *.c
global-exclude *.cpp

global-exclude __pycache__/*
global-exclude *.so
Expand Down
2 changes: 1 addition & 1 deletion pairtools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"""

__version__ = "1.1.1"
__version__ = "1.1.2"

# from . import lib
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from Cython.Distutils import build_ext as _build_ext
from Cython.Build import cythonize
except ImportError:
raise ImportError('Cython is required to build the extension modules.')
raise ImportError('Cython is now required to build the extension modules.')


def _read(*parts, **kwargs):
Expand Down

0 comments on commit c3d300a

Please sign in to comment.