Changelog#
1.8.2 (2023-02-24)#
Warn when using ParallelMonteCarlo on Windows and MacOS
Stop trying to use -1 in unsigned integer arrays
#68: Fix compatiblity with Numpy deprecations
1.8.1 (2022-02-07)#
Fix changes to Scipy API in 1.8.0
1.8.0 (2020-02-27)#
Replace
.todensewith.toarrayto satisfy changes in Scipy APIAdd
atolparameter to iterative solver to satisfy changes in Scipy APIFix regression in 1.7.7 which raises errors when no new
demandwas present (PR #6)
1.7.8 (2019-11-01)#
Add check to make sure not all arrays are empty during matrix construction
Allow numpy loading pickled data
1.7.7 (2019-10-31)#
Switch lca.demand when running .redo_lci or .redo_lcia. Thanks Aleksandra Kim!
1.7.6 (2019-10-22)#
Fixed #25: Sort array filepaths when loading. Thanks Pedro Anchieta!
1.7.5 (2019-09-19)#
Merged Pull Request #4 to directly pass Numpy or byte arrays instead of filepaths. Thanks Jan Machacek!
1.7.4 (2019-08-23)#
Improved support for independent LCA calculations (i.e. without Brightway2 databases, only processed arrays)
Added ability to calculate LCAs in a single matrix (for BONSAI)
1.7.3 (2018-10-24)#
Updated Monte Carlo for upstream presamples changes
1.7.2 (2018-08-21)#
Merged Pull Request #3 to fix some attributes in graph traversals. Thanks Bernhard Steubing!
1.7.1 (2018-02-14)#
Compatibility with presamples release version
1.7 (2018-01-18)#
Add compatibility with bw_presamples
1.6.4 (2018-01-12)#
Really fix bug in seed generation for pooled Monte Carlo calculations
1.6.3 (2018-01-11)#
Fix bug in MultiMonteCarlo
Add some logging to support presamples in the future
1.6.2 (2017-04-17)#
Fix license text
1.6.1 (2017-04-06)#
Simplify indexing
1.6 (2017-04-05)#
Replace bw2speedups indexing with numpy array trickiness which is ~5 times faster
1.5.4 (2017-02-24)#
Remove non-ascii characters from license text, because setuptools
1.5.3 (2016-10-28)#
Restructure imports to not depend on
bw2dataUse
io.openinsetup.py
1.5.2 (2016-10-28)#
Specify encoding of license file
1.5.1 (2016-09-15)#
Bugfix for broken import statement
1.5 (2016-09-15)#
Merge pull request from Adrian Haas to enable Pardiso solver usage when available.
1.4 (2016-07-14)#
Added utility functions for
load_calculation_packageandsave_calculation_packagefor independent LCAs and cloud computing.Compatibility with
bw2data2.3
1.3.6 (2016-07-01)#
Fixed bugs where RNG and technosphere matrix builder would change values in arrays meant to be static
1.3.5 (2016-07-01)#
Fix bugs and add tests for ParameterVectorLCA
1.3.4 (2016-06-10)#
Changed ParameterVectorLCA: Can no longer be called, split off rebuild_all into a separate method, added tests.
1.3.3 (2016-06-10)#
Better test coverage and Windows comaptibility
1.3.2 (2016-06-08)#
FEATURE: Add class and mixin for Monte Carlo using direct solvers
CHANGE: Move tests to root directory and add Monte Carlo tests
CHANGE: Consistent use of
__next__andnext()so that all Monte Carlo iterator classes are Py2/3 compatible and programmed the same way.ParameterVectorLCA.next()will no longer work on Python 3; instead, callnext(ParameterVectorLCA). When providing a new vector, call the class itself (after it is instantiated):pv = ParameterVectorLCA(args); pv(new_vector).
1.3.1 (2016-06-06)#
CHANGE:Updates for bw2data 2.2
BUGFIX: Correctly handle regionalized CFs in site-generic calculations
FEATURE: Add contribution methods to LCA classes
1.3 (2016-05-28)#
BUGFIX: Correctly handle project names in multiprocess calculations
1.2.1 (2016-03-14)#
BUGFIX: switch_* was seriously broken due to new handling of processed arrays filepaths
1.2 (2016-03-14)#
Feature: Py3 compatibility
FEATURE: Independent LCAs which don’t rely on bw2data and the brightway2 ecosystem
Feature: Add
DenseLCAFEATURE: Added
switch_*andto_dataframemethods to LCA classFEATURE: Allow graph traversal to skip links in static databases
BUGFIX: Terminate multiprocessing pools after calculations
CHANGE: Load data automatically in Monte Carlo
CHANGE: Automatically clean dirty databases before starting calculations
Plus lots of small bugfixes, and compatibility with projects.
1.0 (2015-03-08)#
CHANGE: Split activities and products
0.17.1 (2015-02-13)#
BUGFIX: Don’t require substitution in TYPE_DICTIONARY.
0.17 (2015-02-13)#
FEATURE: Properly handle
substitutiontype exchangesCHANGE: Compatible with bw2data version 2
BUGFIX: Fix handling of nested dependent databases
0.16.1 (2014-12-05)#
CHANGE: Better documentation for most code.
BUGFIX: Graph traversal handles most coproducts, and raises sensible errors when it can’t.
0.16 (2014-08-03)#
FEATURE: Changes in MatrixBuilder should make normal static LCA calculations about three times faster.
0.15.1 (2014-07-30)#
Update dependencies.
0.15 (2014-06-11)#
BREAKING CHANGE: Use Database.filename for processed data. Requires update to bw2data version 0.16 or greater.
0.13 (2014-04-16)#
BREAKING CHANGE: LCA.fix_dictionaries now sets/uses
_mapped_dictto determine iffix_dictionarieshas been called.BUGFIX: LCA.build_demand_array doesn’t break if
fix_dictionarieshas been called.
0.12 (2014-02-13)#
BREAKING CHANGE: Matrix builder will only include parameter array rows that are correctly mapped, instead of raising an error when unmapped rows occur. This behaviour can be turned off by passing drop_missing=False.
0.11.1 (2014-01-29)#
BUGFIX: Change column names in method matrix building to be consistent with bw2data 0.11
0.11 (2014-01-26)#
BREAKING CHANGE: Graph traversal was reworked, and some functionality for interpreting the output was moved to
bw2analyzer.BREAKING CHANGE: Deleted
SimpleRegionalizedLCAclass. Regionalization will be provided in bw2regional.BREAKING CHANGE: Deleted initial sensitivity work, moved for now to branch, as it was not yet usable.
FEATURE: Much better and more thorough documentation.
FEATURE: Improved testing and test coverage