From c0b0fc8e37743695f32838ea56e6fb3f9698745e Mon Sep 17 00:00:00 2001 From: mdlpstsci Date: Thu, 13 Jun 2024 12:07:54 -0400 Subject: [PATCH] HLA-1266: Newcandidate Drizzlepac RC - 371rc2 (#1815) Co-authored-by: Joseph Hunkeler --- CHANGELOG.rst | 2 +- JenkinsfileRT | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d19f633f5..a3dafe708 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -21,7 +21,7 @@ number of the code change for that issue. These PRs can be viewed at: 3.7.1 (unreleased) ================== - Modify the dependencies portion of the project.toml file to specify - numpy<2.0 [#nnnn] + numpy<2.0 [#1813] - Removed the use of a custom smoothing kernel based upon actual image data as a poorly determined kernel can ultimately cause poor source diff --git a/JenkinsfileRT b/JenkinsfileRT index 49c7db05a..0ed2dc318 100644 --- a/JenkinsfileRT +++ b/JenkinsfileRT @@ -44,17 +44,17 @@ bc2.conda_packages = ['python=3.10'] bc2.build_cmds = ["pip install numpy astropy codecov pytest-cov ci-watson || true", "pip install -r requirements-dev.txt --upgrade -e '.[test]' || true", "pip freeze || true"] -bc1.test_cmds = ["pytest --env=${artifactory_env} --cov=./ --basetemp=tests_output --junitxml=results.xml --bigdata || true", +bc2.test_cmds = ["pytest --env=${artifactory_env} --cov=./ --basetemp=tests_output --junitxml=results.xml --bigdata || true", "codecov || true"] -bc1.test_configs = [data_config] +bc2.test_configs = [data_config] // Apply a large failure threshold to prevent marking the pipeline job failed // when xunit ingests any test results -bc1.failedFailureThresh = 1000 +bc2.failedFailureThresh = 1000 bc3 = new BuildConfig() -bc3.runtime.add('CFLAGS=-std=gnu99') bc3.nodetype = 'linux' -bc3.env_vars = ['TEST_BIGDATA=https://bytesalad.stsci.edu/artifactory'] +bc3.env_vars = ['TEST_BIGDATA=https://bytesalad.stsci.edu/artifactory', + 'CFLAGS=-std=gnu99'] bc3.name = '3.11' bc3.conda_packages = ['python=3.11'] bc3.build_cmds = ["pip install numpy astropy ci-watson",