-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparing for 1.2.2 and updating versions (#46)
* Update build.yml * Update pyproject.toml Expanding our supported python trove identifiers to include python 3.13 * Update Cargo.toml Updating pyo3 from 0.15 to 0.23 * Update pyproject.toml Moving 3.6 and 3.7 to EOL (since not only they, but even 3.8 are EOL. pyo3 currently does not support abi3-py36, and I'm betting 3.7 is going to follow suit sometime soon.) * Update Cargo.toml abi3-py36 changing to abi3-py38 * Updated a bunch of versions. Pyo3 changed fairly substantially in signature specification for python. Also updated my first name everywhere. * Updating versions, running clippy, yanking the logging nonsense that was never used and never should be used (there have to be better ways than that nonsense), and about to have clippy fix my convention of always using a return statement because I hate implicit returns but that's a me thing not a world thing * More clippy fixes * More clippy suggestions. It's like I never ran this before. * Adding ipython and networkx as dev deps. `cd packages/pyo3 && uv sync && uv run ipython` get you to a reasonable repl for manual testing. I cannot believe I did not do proper python testing here. Maybe I did it in graspologic? * Running cargo fmt * Misspelled repetition, which I have also repetitively done in this commit message alone * Committing some minor changes before I rebase on dev. I forgot the dev/main branching scheme. * Updating the pyproject.toml to be correct as per the current pypa specification. I really hope this doesn't break older versions. * Fixing the changes clippy made to some of the commonmark documentation in the function. Too much was being treated as a quoted paragraph.
- Loading branch information
Showing
33 changed files
with
550 additions
and
517 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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
fn_args_layout = "vertical" | ||
empty_item_single_line = false | ||
fn_params_layout = "vertical" | ||
|
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,2 @@ | ||
too-many-arguments-threshold=20 # for what it is worth, clippy is absolutely right and pythonic-ness is absolutely wrong | ||
enum-variant-name-threshold=10 # it doesn't like the repetition in "Error" in my export-to-python error types |
File renamed without changes.
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 |
---|---|---|
@@ -1,16 +1,13 @@ | ||
[package] | ||
name = "cli" | ||
version = "0.1.0" | ||
authors = ["Dwayne Pryce <dwpryce@microsoft.com>"] | ||
version = "0.1.1" | ||
authors = ["Dax Pryce <daxpryce@microsoft.com>"] | ||
edition = "2018" | ||
license = "MIT" | ||
description = "CLI Runner for the topologic associated crates (network_partitions and eventually network_automatic_layouts)" | ||
|
||
[dependencies] | ||
clap = "2.34" | ||
clap = "4.5" | ||
rand = "0.8" | ||
rand_xorshift = "0.3" | ||
network_partitions={path = "../network_partitions"} | ||
|
||
[features] | ||
logging = ["network_partitions/logging"] |
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 |
---|---|---|
@@ -1,18 +1,14 @@ | ||
[package] | ||
name = "network_partitions" | ||
version = "0.1.0" | ||
authors = ["Dwayne Pryce <dwpryce@microsoft.com>"] | ||
authors = ["Dax Pryce <daxpryce@microsoft.com>"] | ||
edition = "2018" | ||
license = "MIT" | ||
description = "Leiden community detection as per https://arxiv.org/abs/1810.08473" | ||
|
||
[dependencies] | ||
rand = "0.8" | ||
chrono = { version = "0.4", optional = true } | ||
|
||
[dev-dependencies] | ||
rand_xorshift = "0.3" | ||
|
||
[features] | ||
logging = ["chrono"] | ||
debug = [] |
Oops, something went wrong.