Skip to content

Commit

Permalink
Prepare hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jan 22, 2025
1 parent e93ad7b commit affdf8c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: igraph
Title: Network Analysis and Visualization
Version: 2.1.3
Version: 2.1.4
Authors@R: c(
person("Gábor", "Csárdi", , "[email protected]", role = "aut",
comment = c(ORCID = "0000-0001-7098-9676")),
Expand Down
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<!-- NEWS.md is maintained by https://fledge.cynkra.com, contributors should not edit this file -->

# igraph 2.1.4

## Testing

- Tweak tests that use the graph package.


# igraph 2.1.3

## Features
Expand Down
4 changes: 1 addition & 3 deletions tests/testthat/test-graphNEL.R
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
test_that("graphNEL conversion works", {
skip_if_not_installed("graph")

suppressPackageStartupMessages(library(graph, warn.conflicts = FALSE))
set.seed(20250122)

g <- sample_gnp(100, 5 / 100)
N <- as_graphnel(g)
g2 <- graph_from_graphnel(N)
gi <- isomorphic(g, g2, method = "vf2")
expect_true(gi)
expect_equal(gi$map12, 1:vcount(g))
expect_equal(gi$map21, 1:vcount(g))

## Attributes

Expand Down

0 comments on commit affdf8c

Please sign in to comment.