-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge changes from main #82
Changes from all commits
bbbb846
c88e2f2
db6bd7a
7140b16
ac92055
562916c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ test = [ | |
"pytest", | ||
"pytest-cov", | ||
"pytest-xdist", | ||
"ruff==0.7.2", | ||
"ruff==0.7.3", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion: Consider consolidating the duplicated Ruff dependency specification The Ruff dependency is currently specified with the same version in both test and dev dependencies. Consider moving it to a shared dependency list or using dependency inheritance to avoid potential maintenance issues. |
||
] | ||
dev = [ | ||
"cogapp", | ||
|
@@ -60,7 +60,7 @@ dev = [ | |
"pytest", | ||
"pytest-cov", | ||
"pytest-xdist", | ||
"ruff==0.7.2", | ||
"ruff==0.7.3", | ||
] | ||
doc = ["click", | ||
"ipykernel", | ||
|
@@ -79,6 +79,7 @@ doc = ["click", | |
"pandas", | ||
"plotly", | ||
"requests", | ||
"statsmodels", | ||
] | ||
|
||
[project.scripts] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
# found by h5py | ||
import hdf5plugin # noqa | ||
|
||
__version__ = "2024.11.8a2" | ||
__version__ = "2024.11.8a3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue (documentation): Inconsistent package name formatting between
diverse-seq
anddiverse_seq
Consider using a consistent name throughout the documentation to avoid confusion. If the different forms are intentional (e.g., project name vs package name), please clarify this.