Skip to content

Commit

Permalink
Merge pull request #128 from cgat-developers/AC-excludetests
Browse files Browse the repository at this point in the history
removed tests from setup.py because they are likely causing an issue …
  • Loading branch information
Acribbs authored Apr 6, 2024
2 parents b7b6936 + fc4ca66 commit 05b8beb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 100 deletions.
73 changes: 0 additions & 73 deletions .github/workflows/release.yml

This file was deleted.

26 changes: 1 addition & 25 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,25 +1 @@
#
# Use .add_data_files and .add_data_dir methods in a appropriate
# setup.py files to include non-python files such as documentation,
# data, etc files to distribution. Avoid using MANIFEST.in for that.
#
include MANIFEST.in
include LICENSE
include INSTALL
include README.rst
include KNOWN_BUGS
include THANKS.txt

include install.sh
include requires.txt

include cgat/Components/*.h
include cgat/Components/*.cpp
include cgat/NCL/*.h
include cgat/NCL/*.pxd
include cgat/NCL/intervaldb.c
include cgat/Components/connected_components.h
include cgat/Components/connected_components.cpp
exclude cgat/Components/Components.cpp
include cgat/BamTools/*.pyx
include cgat/VCFTools/*.pyx
recursive-exclude tests *
2 changes: 1 addition & 1 deletion cgat/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.1"
__version__ = "0.7.3"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def is_exe(fpath):
elif major == 3:
pass

cgat_packages = find_packages()
cgat_packages = find_packages(exclude=['tests'])
cgat_package_dirs = {'cgat': 'cgat'}

##########################################################
Expand Down

0 comments on commit 05b8beb

Please sign in to comment.