From d8650634e6a9075490ad63f77e9899ba0ff95565 Mon Sep 17 00:00:00 2001 From: Ben Young Date: Wed, 8 Jun 2022 08:37:41 -0400 Subject: [PATCH] :bookmark: update to 1.2.2 --- requirements.txt | 6 +++--- setup.py | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index 6223afaf2..f9356c917 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -git+https://github.com/USEPA/Federal-LCA-Commons-Elementary-Flow-List.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/Federal-LCA-Commons-Elementary-Flow-List#egg=fedelemflowlist +git+https://github.com/USEPA/esupy#egg=esupy +git+https://github.com/USEPA/standardizedinventories#egg=StEWI pandas>=1.3.2 # Powerful data structures for data analysis, time series, and statistics. pip>=9 # The PyPA recommended tool for installing Python packages. setuptools>=41 # Fully-featured library designed to facilitate packaging Python projects. diff --git a/setup.py b/setup.py index 62b0cde4f..f910d3ab0 100644 --- a/setup.py +++ b/setup.py @@ -6,14 +6,14 @@ setup( name='flowsa', - version='1.2.1', + version='1.2.2', packages=find_packages(), package_dir={'flowsa': 'flowsa'}, include_package_data=True, install_requires=[ - 'fedelemflowlist @ git+https://github.com/USEPA/Federal-LCA-Commons-Elementary-Flow-List.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/Federal-LCA-Commons-Elementary-Flow-List#egg=fedelemflowlist', + 'esupy @ git+https://github.com/USEPA/esupy#egg=esupy', + 'StEWI @ git+https://github.com/USEPA/standardizedinventories#egg=StEWI', 'pandas>=1.3.2', 'pip>=9', 'setuptools>=41',