From 193622bafe2c45e4ca9e61a8a395d3e9ef9e3c01 Mon Sep 17 00:00:00 2001 From: mrbuche Date: Tue, 6 Feb 2024 08:10:09 -0700 Subject: [PATCH 1/4] bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9830761d..d0598b1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [ {email = "mrbuche@sandia.gov"}, {name = "Michael R. Buche"} ] -requires-python = ">=3.7,<=3.12" +requires-python = ">=3.7,<3.13" dependencies = ["cffi", "maturin", "numpy"] classifiers = [ 'License :: OSI Approved :: BSD License', From 9f1d9b3b2e969e897ebd8f843614a74e5fa53565 Mon Sep 17 00:00:00 2001 From: mrbuche Date: Tue, 6 Feb 2024 08:10:30 -0700 Subject: [PATCH 2/4] try --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1966e606..53b53cd8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM julia:1.10.0 as julia +FROM julia:1.10 as julia FROM python:3.12 WORKDIR / RUN curl https://sh.rustup.rs -sSf | bash -s -- -y From 6c78ed3a6bfbd1ee0b85f09528f99f4945cff5db Mon Sep 17 00:00:00 2001 From: mrbuche Date: Tue, 6 Feb 2024 08:10:51 -0700 Subject: [PATCH 3/4] try --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 222e76d9..43a48700 100644 --- a/Project.toml +++ b/Project.toml @@ -13,7 +13,7 @@ DocStringExtensions = "0.9" Documenter = "0.27" JuliaFormatter = "1.0" Polymers_jll = "0.3.6" -julia = "1.6 - 1.9" +julia = "1" [extras] Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" From 0c4a71b8790662877cf4dc500cedf3905683f89f Mon Sep 17 00:00:00 2001 From: mrbuche Date: Tue, 6 Feb 2024 08:31:27 -0700 Subject: [PATCH 4/4] bump --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 42c97252..dc9b2443 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,8 +14,8 @@ extern = [] python = ["dep:numpy", "dep:pyo3"] [dependencies] -numpy = {version = "0.19", optional = true} -pyo3 = {version = "0.19", features = ["extension-module"], optional = true} +numpy = {version = "0.20", optional = true} +pyo3 = {version = "0.20", features = ["extension-module"], optional = true} rand = "0.8.5" rand_distr = "0.4.3"