Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
Signed-off-by: zethson <[email protected]>
  • Loading branch information
Zethson committed Aug 24, 2023
1 parent 304f5f8 commit da1ed9b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 23 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,8 @@ jobs:
- name: Install pip
run: python -m pip install --upgrade pip

- name: Install doc dependencies
run: pip install -r docs/requirements.txt

- name: Install pertpy
run: pip install . ete3 pyqt5
- name: Install pertpy with docs
run: pip install .[doc]

- name: Build docs
run: |
Expand Down
16 changes: 0 additions & 16 deletions docs/requirements.txt

This file was deleted.

1 change: 1 addition & 0 deletions pertpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

warnings.filterwarnings("ignore", category=NumbaDeprecationWarning)
warnings.filterwarnings("ignore", category=MatplotlibDeprecationWarning)
warnings.filterwarnings("ignore", category=UserWarning)

from . import data as dt
from . import plot as pl
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ dependencies = [
"sparsecca",
"numba",
"remotezip",
"openpyxl"
"openpyxl",
]

[project.optional-dependencies]
coda = [
"ete3",
"pyqt5"
"pyqt5" # remove this after ete4 got released
]
dev = [
"pre-commit",
Expand Down

0 comments on commit da1ed9b

Please sign in to comment.