Skip to content

Commit 9d3a8b5

Browse files
committed
Merge branch 'main' into produce-microdata-raceeth
2 parents 1035362 + 6b6223a commit 9d3a8b5

File tree

6 files changed

+6
-4
lines changed

6 files changed

+6
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.21
2+
current_version = 0.1.22
33
commit = True
44
message = chore: bump covidcast-indicators to {new_version}
55
tag = False

_delphi_utils_python/.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.15
2+
current_version = 0.1.16
33
commit = True
44
message = chore: bump delphi_utils to {new_version}
55
tag = False

_delphi_utils_python/delphi_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
from .signal import add_prefix
1515
from .nancodes import Nans
1616

17-
__version__ = "0.1.15"
17+
__version__ = "0.1.16"

_delphi_utils_python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
setup(
2727
name="delphi_utils",
28-
version="0.1.15",
28+
version="0.1.16",
2929
description="Shared Utility Functions for Indicators",
3030
long_description=long_description,
3131
long_description_content_type="text/markdown",

facebook/delphiFacebook/NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export(write_contingency_tables)
5555
export(write_data_api)
5656
export(write_individual)
5757
import(data.table)
58+
importFrom(Rcpp,evalCpp)
5859
importFrom(data.table,fread)
5960
importFrom(dplyr,"%>%")
6061
importFrom(dplyr,across)

facebook/delphiFacebook/R/variables.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ split_options <- function(column) {
3030
#' @return a logical vector; for each list entry, whether selection is contained
3131
#' in the character vector.
3232
#'
33+
#' @importFrom Rcpp evalCpp
3334
#' @useDynLib delphiFacebook, .registration = TRUE
3435
is_selected <- function(vec, selection, use_cpp=TRUE) {
3536
select_fn <- ifelse(use_cpp, is_selected_cpp, is_selected_r)

0 commit comments

Comments
 (0)