Skip to content

Commit

Permalink
(v2.1.1.9139) unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
msberends committed Feb 1, 2025
1 parent 6a206be commit d84033b
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 12 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: AMR
Version: 2.1.1.9138
Date: 2025-01-31
Version: 2.1.1.9139
Date: 2025-02-01
Title: Antimicrobial Resistance Data Analysis
Description: Functions to simplify and standardise antimicrobial resistance (AMR)
data analysis and to work with microbial and antimicrobial properties by
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AMR 2.1.1.9138
# AMR 2.1.1.9139

*(this beta version will eventually become v3.0. We're happy to reach a new major milestone soon, which will be all about the new One Health support! Install this beta using [the instructions here](https://msberends.github.io/AMR/#latest-development-version).)*

Expand Down
2 changes: 1 addition & 1 deletion PythonPackage/AMR/AMR.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.2
Name: AMR
Version: 2.1.1.9138
Version: 2.1.1.9139
Summary: A Python wrapper for the AMR R package
Home-page: https://github.com/msberends/AMR
Author: Matthijs Berends
Expand Down
Binary file not shown.
Binary file removed PythonPackage/AMR/dist/amr-2.1.1.9138.tar.gz
Binary file not shown.
Binary file added PythonPackage/AMR/dist/amr-2.1.1.9139.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion PythonPackage/AMR/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='AMR',
version='2.1.1.9138',
version='2.1.1.9139',
packages=find_packages(),
install_requires=[
'rpy2',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
This knowledge base contains all context you must know about the AMR package for R. You are a GPT trained to be an assistant for the AMR package in R. You are an incredible R specialist, especially trained in this package and in the tidyverse.

First and foremost, you are trained on version 2.1.1.9138. Remember this whenever someone asks which AMR package version you’re at.
First and foremost, you are trained on version 2.1.1.9139. Remember this whenever someone asks which AMR package version you’re at.

Below are the contents of the file, the file, and all the files (documentation) in the package. Every file content is split using 100 hypens.
----------------------------------------------------------------------------------------------------
Expand Down
7 changes: 1 addition & 6 deletions tests/testthat/test-zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,7 @@ call_functions <- c(

import_functions <- c(import_functions, call_functions)

if (AMR:::pkg_is_available("desc")) {
suggests <- desc::desc(".")$get_deps()
suggests <- suggests[which(suggests$type == "Suggests"), ]$package
} else {
suggests <- import_functions
}
suggests <- strsplit(utils::packageDescription(pkg = ".", lib.loc = ".", fields = "Suggests"), "[,\n ]+")[[1]]
for (i in seq_len(length(import_functions))) {
fn <- names(import_functions)[i]
pkg <- unname(import_functions[i])
Expand Down

0 comments on commit d84033b

Please sign in to comment.