From 1bc9c630c0da33740e799939ee3fa2fce708cc21 Mon Sep 17 00:00:00 2001 From: catherinebirney <60186515+catherinebirney@users.noreply.github.com> Date: Mon, 16 Dec 2024 12:50:43 -0700 Subject: [PATCH] drop development from package requirements --- requirements.txt | 6 +++--- setup.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5c7ede69..28435d09 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -git+https://github.com/USEPA/fedelemflowlist.git@develop#egg=fedelemflowlist -git+https://github.com/USEPA/esupy.git@develop#egg=esupy -git+https://github.com/USEPA/standardizedinventories.git@develop#egg=StEWI +git+https://github.com/USEPA/fedelemflowlist.git#egg=fedelemflowlist +git+https://github.com/USEPA/esupy.git#egg=esupy +git+https://github.com/USEPA/standardizedinventories.git#egg=StEWI appdirs >= 1.4.3 # Storing user data bibtexparser>=1.2.0 # Generates bibtex kaleido == 0.1.0.post1; platform_system == "Windows" # export plotly.py figures as static images diff --git a/setup.py b/setup.py index 697cfcef..8d0dc717 100644 --- a/setup.py +++ b/setup.py @@ -12,9 +12,9 @@ include_package_data=True, python_requires=">=3.9", install_requires=[ - 'fedelemflowlist @ git+https://github.com/USEPA/fedelemflowlist.git@develop#egg=fedelemflowlist', - 'esupy @ git+https://github.com/USEPA/esupy.git@develop#egg=esupy', - 'StEWI @ git+https://github.com/USEPA/standardizedinventories.git@develop#egg=StEWI', + 'fedelemflowlist @ git+https://github.com/USEPA/fedelemflowlist.git#egg=fedelemflowlist', + 'esupy @ git+https://github.com/USEPA/esupy.git#egg=esupy', + 'StEWI @ git+https://github.com/USEPA/standardizedinventories.git#egg=StEWI', 'appdirs>=1.4.3', 'bibtexparser>=1.2.0', "kaleido==0.1.0.post1;platform_system=='Windows'",