-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
scverse-bot
authored and
scverse-bot
committed
May 21, 2024
1 parent
80529c6
commit 650be9c
Showing
7 changed files
with
53 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff a/.github/workflows/test.yaml b/.github/workflows/test.yaml (rejected hunks) | ||
@@ -24,11 +24,11 @@ jobs: | ||
matrix: | ||
include: | ||
- os: ubuntu-latest | ||
- python: "3.9" | ||
+ python: "3.10" | ||
- os: ubuntu-latest | ||
- python: "3.11" | ||
+ python: "3.12" | ||
- os: ubuntu-latest | ||
- python: "3.11" | ||
+ python: "3.12" | ||
pip-flags: "--pre" | ||
name: PRE-RELEASE DEPENDENCIES | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
diff a/.gitignore b/.gitignore (rejected hunks) | ||
@@ -18,6 +18,7 @@ __pycache__/ | ||
/.pytest_cache/ | ||
/.cache/ | ||
/data/ | ||
+/node_modules/ | ||
|
||
# docs | ||
/docs/generated/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
diff a/pyproject.toml b/pyproject.toml (rejected hunks) | ||
@@ -7,7 +7,7 @@ name = "FlowSOM" | ||
version = "0.0.1" | ||
description = "The complete FlowSOM package known from R, now available in Python" | ||
readme = "README.md" | ||
-requires-python = ">=3.9" | ||
+requires-python = ">=3.10" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "Artuur Couckuyt"}, | ||
@@ -101,7 +101,7 @@ ignore = [ | ||
"D107", | ||
# Errors from function calls in argument defaults. These are fine when the result is immutable. | ||
"B008", | ||
- # __magic__ methods are are often self-explanatory, allow missing docstrings | ||
+ # __magic__ methods are often self-explanatory, allow missing docstrings | ||
"D105", | ||
# first line should end with a period [Bug: doesn't work with single-line docstrings] | ||
"D400", |