Skip to content

Commit

Permalink
Merge pull request #6 from cantinilab/dev
Browse files Browse the repository at this point in the history
Update main to version 0.3.4
  • Loading branch information
r-trimbour authored Oct 22, 2024
2 parents 8ca4d72 + d320976 commit 2e3defe
Show file tree
Hide file tree
Showing 18 changed files with 555 additions and 10,664 deletions.
1 change: 1 addition & 0 deletions .github/workflows/codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pre-commit
pip install circe-py
pip install .[full]
- name: Run tests and collect coverage
run: |
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ jobs:
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y liblapack-dev
- name: Build SDist
run: python -m build

run: |
pip install build twine
python -m build
- name: Check metadata
run: python -m twine check dist/*

Expand All @@ -40,7 +41,13 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Install LAPACK (Linux only)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y liblapack-dev
- name: Build SDist
run: |
pip install build
python -m build
- uses: pypa/cibuildwheel@v2.21
env:
CIBW_ARCHS_MACOS: auto universal2
Expand Down
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include pyquic_ext/*.pyx
include pyquic_ext/*.C
include pyquic_ext/*.h
include setup.py
53 changes: 0 additions & 53 deletions build.py

This file was deleted.

8 changes: 4 additions & 4 deletions circe/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from .circe import extract_atac_links, \
from circe.circe import extract_atac_links, \
compute_atac_network, \
add_region_infos, \
sliding_graphical_lasso, \
subset_region

from .draw import plot_connections
from .ccan_module import find_ccans, add_ccans
from . import metacells
from circe.draw import plot_connections
from circe.ccan_module import find_ccans, add_ccans
from circe import metacells
Loading

0 comments on commit 2e3defe

Please sign in to comment.