From 7cc345bd8f56327db45451cd45fd732cac3beef6 Mon Sep 17 00:00:00 2001 From: Jonathan Bloedow Date: Wed, 13 Dec 2023 11:11:53 -0800 Subject: [PATCH] Changing setup.py to point to requirements_2018.txt seems to make something in RTD land unhappy. Since we're using the 2018 model for the meantime, let's just make the 'ideal' requirements.txt the one with the funny name and make what was _2018 the one with the standard name, and see what happens. --- requirements.txt | 5 +++-- requirements_2018.txt | 3 --- requirements_future.txt | 2 ++ setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 requirements_2018.txt create mode 100644 requirements_future.txt diff --git a/requirements.txt b/requirements.txt index 25bfa20..3946a35 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ -emodpy~=1.16 -emod-typhoid +emodpy==1.22.0.dev3 +emod-api==1.31.0.dev1 +emod-typhoid==0.0.5 diff --git a/requirements_2018.txt b/requirements_2018.txt deleted file mode 100644 index 3946a35..0000000 --- a/requirements_2018.txt +++ /dev/null @@ -1,3 +0,0 @@ -emodpy==1.22.0.dev3 -emod-api==1.31.0.dev1 -emod-typhoid==0.0.5 diff --git a/requirements_future.txt b/requirements_future.txt new file mode 100644 index 0000000..25bfa20 --- /dev/null +++ b/requirements_future.txt @@ -0,0 +1,2 @@ +emodpy~=1.16 +emod-typhoid diff --git a/setup.py b/setup.py index 50057af..40f19ac 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ long_description = fh.read() ext_name = "emodpy_typhoid" -with open('requirements_2018.txt') as requirements_file: +with open('requirements.txt') as requirements_file: requirements = requirements_file.read().split("\n") setuptools.setup(