Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,4 +146,5 @@ jobs:
- name: Python tests
shell: bash -l {0}
run: |
python -m Corrfunc.tests
python -m pip install pytest
pytest -v
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ New features
Changes
-------
- Add Corrfunc/tests.py to CI testing [#260]
- Migrate doctets to Python 3.8 [#261]
- Migrate doctests to Python 3.8 [#261]
- Migrate Python tests to pytest [#265]


2.4.0 (2021-09-30)
Expand Down
5 changes: 5 additions & 0 deletions Corrfunc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,16 @@
from __future__ import (division, print_function, absolute_import,
unicode_literals)
import os
import sys
import warnings

__version__ = "2.4.0"
__author__ = "Manodeep Sinha <manodeep@gmail.com>"


if sys.version_info[0] < 3:
warnings.warn('Python 2 support is deprecated and will be dropped in Corrfunc v2.6', FutureWarning)

try:
__CORRFUNC_SETUP__
except NameError:
Expand Down
169 changes: 0 additions & 169 deletions Corrfunc/call_correlation_functions.py

This file was deleted.

150 changes: 0 additions & 150 deletions Corrfunc/call_correlation_functions_mocks.py

This file was deleted.

Loading