Skip to content

Commit

Permalink
🔖 v1.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bl-young committed Apr 7, 2022
1 parent 989b80f commit 410a387
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ If the `remove_overlap` parameter is set to True (default), `stewicombo` combine
## Installation Instructions

Install a release directly from github using pip. From a command line interface, run:
> pip install git+https://github.com/USEPA/[email protected].2#egg=StEWI
> pip install git+https://github.com/USEPA/[email protected].3#egg=StEWI
where you can replace 'v1.0.2' with the version you wish to use under [Releases](https://github.com/USEPA/standardizedinventories/releases).
where you can replace 'v1.0.3' with the version you wish to use under [Releases](https://github.com/USEPA/standardizedinventories/releases).

Alternatively, to install from the most current point on the repository:
```
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
git+https://github.com/USEPA/esupy.git@develop#egg=esupy
git+https://github.com/USEPA/esupy#egg=esupy
pandas>=1.3 # Powerful data structures for data analysis, time series, and statistics.
numpy>=1.20.1 # NumPy is the fundamental package for array computing with Python
requests>=2.20 # Python HTTP for Humans; used for webservice calls
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

install_requires=['esupy @ git+https://github.com/USEPA/esupy.git@develop#egg=esupy',
install_requires=['esupy @ git+https://github.com/USEPA/esupy#egg=esupy',
'numpy>=1.20.1',
'pandas>=1.3',
'requests>=2.20',
Expand All @@ -12,7 +12,7 @@

setup(
name="StEWI",
version="1.0.2",
version="1.0.3",
author="Ben Young, Wesley Ingwersen, Matthew Bergmann, Jose Hernandez-Betancur, Tapajyoti Ghosh, Eric Bell",
author_email="[email protected]",
description="Standardized Emission And Waste Inventories (StEWI)"
Expand Down
2 changes: 1 addition & 1 deletion stewi/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
DATA_PATH = MODULEPATH / 'data'

log.basicConfig(level=log.INFO, format='%(levelname)s %(message)s')
STEWI_VERSION = '1.0.2'
STEWI_VERSION = '1.0.3'

# Conversion factors
USton_kg = 907.18474
Expand Down

0 comments on commit 410a387

Please sign in to comment.