Coder Social home page Coder Social logo

llnl / units Goto Github PK

View Code? Open in Web Editor NEW
130.0 7.0 25.0 3.63 MB

A run-time C++ library for working with units of measurement and conversions between them and with string representations of units and measurements

Home Page: https://units.readthedocs.io/en/latest/

License: BSD 3-Clause "New" or "Revised" License

CMake 3.52% C++ 95.43% Shell 0.69% Dockerfile 0.17% HTML 0.20%
cpp energy math-physics physical-units measurements unit-conversions conversion si-units string-conversions

units's Introduction

Units

codecov Build Status CircleCI Documentation Status pre-commit.ci status

What's new

Documentation

The Units library provides a means of working with units of measurement at runtime, including conversion to and from strings. It provides a small number of types for working with units and measurements and operations necessary for user input and output with units.

This software was developed for use in LLNL/GridDyn, and HELICS and is currently a work in progress (though getting close). Namespaces, function names, and code organization is subject to change though is fairly stable at this point, input is welcome. A set of documentation is available.

Table of contents

Purpose

A units library was needed to be able to represent units from a wide range of disciplines and be able to separate them from the numerical values for use in calculations when needed. The main drivers are

  1. converting units, often represented by strings, to a standardized unit set when dealing with user input and output.
  2. Being able to use the unit as a singular type that could contain any unit, and not introduce a huge number of types to represent all possible units.
  3. Being able to associate a completely arbitrary unit given by users with a generic interface and support conversions between those user defined units and other units.
  4. The library has its origins in power systems so support for per-unit operations was also lacking in the alternatives.
  5. Capture uncertainty and uncertainty calculations directly with a measurement

It was desired that the unit representation be a compact type(<=8 bytes) that is typically passed by value, that can represent a wide assortment of units and arbitrary combinations of units. The primary use of the conversions is at run-time to convert user input/output to/from internal units, it is not to provide strict type safety or dimensional analysis, though it can provide some of that. This library does NOT provide compile time checking of units. The units library supports units and operations on units where many of the units in use are unknown at compile time and conversions and definitions are dealt with at run time, and may be of a wide variety of units.

This library is an engineering library, created to represent a huge variety of units and measurements in a simple data type instead of a proliferation of templates. It supports conversion of units to and from strings. It supports mathematical operations on units and measurements which are constexpr where possible. It supports units used in a wide variety of scientific and non-scientific contexts. Supports conversions between different units of the same type as well as some typical assumptions for supporting conversions of a few dissimilar types. In some cases it also has some notion of commodities, and support for existing unit standards for strings and naming.

Basic use case

The primary use case for the library is string operations and conversion. For example if you have a library that does some computations with physical units. In the library code itself the units are standardized and well defined. For example take a velocity, internally everything is in meters per second, but there is a configuration file that takes in the initial data and you would like to broadly support different units on the input

#include <units/units.hpp>

double GetInputValueAs(const std::string &input, precise_units out)
{
   auto meas=measurement_from_string(input);
   return meas.value_as(out);
}

The return value can be checked for validity as an invalid conversion would result in constants::invalid_conversion or Nan so can be checked by std::isnan or

if (!meas.units().is_convertible(out))
{
    throw(std::invalid_argument);
}

Limitations

  • The powers represented by units by default are limited see Unit representation and only normal physical units or common operations are supported, this can be modified at compile time to support a much broader range at the expense of size and computation.
  • The library uses floating point and double precision for the multipliers which is generally good enough for most engineering contexts, but does come with the limits and associated loss of precision for long series of calculations on floating point numbers.
  • Currency is supported as a unit but it is not recommended to use this for anything beyond basic financial calculations. So, if you are doing a lot of financial calculations or accounting, use something more specific for currency manipulations. It also does not maintain any notion of currency conversions since those fluctuate in value. It may at some point recognize different currency names though commodities.
  • Fractional unit powers are not supported in general. While some mathematical operations on units are supported any root operations sqrt or cbrt will only produce valid results if the result is integral powers of the base units. One exception is limited support for โˆšHz operations in measurements of Amplitude spectral density. A specific definition of a unit representing square root of Hz is available and will work in combination with other units.
  • While conversions of various temperature definitions are supported, there is no generalized support for datums and bias shifts. It may be possible to add some specific cases in the future for common uses cases but the space requirement limits such use. Some of the other libraries have general support for this.
  • A few equation like units are supported these include logarithms, nepers, and some things like Saffir-Simpson, Beaufort, and Fujita scales for wind, and Richter scales for earthquakes. There is capacity within the framework to add a few more equation like units if a need arises.
  • There are several units where the specific definition differs when used in different domains. The unit rad in the nature of radiation absorbed dose is one such unit as it would conflicts with rad in terms of radians. So rad means radians by default since that is the more common use in electrical engineering. The use of domains in the conversion operations can control this to some extent. For example the 'Nuclear' domain specifies that rad refers to radiation absorbed dose instead of the angle.

Alternatives

If you are looking for compile time and prevention of unit errors in equations for dimensional analysis one of these libraries might work for you.

  • boost units -Zero-overhead dimensional analysis and unit/quantity manipulation and conversion in C++
  • Units -A compile-time, header-only, dimensional analysis library built on C++14 with no dependencies.
  • Units -Another compile time library
  • PhysUnits-CT A C++ library for compile-time dimensional analysis and unit/quantity manipulation and conversion.
  • PhysUnits-RT -A C++ library for run-time dimensional analysis and unit/quantity manipulation and conversion.
  • Libunits -The ultimate shared library to do calculations(!) and conversions with any units! Includes all SI and pseudo SI units and thousands of US, Imperial and other units.
  • unitscpp -A lightweight C++ library for physical calculation with units.
  • mpusz/units -A compile-time enabled Modern C++ library that provides compile-time dimensional analysis and unit/quantity manipulation. This library is in process for standardization in C++23/26.
  • bernedom/SI -A header only C++ library that provides type safety and user defined literals for handling physical values defined in the International System of Units

These libraries will work well if the number of units being dealt with is known at compile time. Many also produce zero overhead operations and checking. Therefore in situations where this is possible other libraries are a preferred alternative.

Reasons to choose this units library over another option

  1. Conversions to and from regular strings are required
  2. The number of units in use is large
  3. A specific single unit or measurement type is required to handle many different kinds of units or measurements
  4. Uncertainties are needed to be included with the measurements
  5. Working with per unit values
  6. Dealing with commodities in addition to regular units. i.e. differentiate between a gallon of water and a gallon of gasoline
  7. Dealing with equation type units
  8. Complete C++ type safety is NOT a critical design requirement.
  9. Support is needed for some funky custom unit with bizarre base units.

Reasons to choose something else

  1. Type safety and dimensional analysis IS a design requirement
  2. Performance is absolutely critical (many other libraries are zero runtime overhead)
  3. You are only working with a small number of known units
  4. You cannot use C++11 yet.
  5. You need to operate on arbitrary or general fractional powers of base units
  6. You need support for arbitrary datum shifts in the unit library

Types

There are only a few types in the library

  • detail::unit_base is the base representation of physical units and powers. It uses a bitfield to store the base unit representation in a 4-byte representation. It is mostly expected that unit_base will not be used in a standalone context but through one of other types.
  • unit is the primary type representing a physical unit it consists of a float multiplier along with a unit_base and contains this within an 8 byte type. The float has an accuracy of around 7 decimal digits. Units within that tolerance will compare equal.
  • precise_unit is the a more accurate type representing a physical unit it consists of a double multiplier along with a unit_base and contains this within an 16 byte type. The double has an accuracy of around 13 decimal digits. Units within that tolerance will compare equal. The remaining 4 bytes are used to contain a commodity object code.
  • measurement is a 16 byte type containing a double value along with a unit and mathematical operations can be performed on it usually producing a new measurement.
  • precise_measurement is similar to measurement except using a double for the quantity and a precise_unit as the units.
  • fixed_measurement is a 16 byte type containing a double value along with a constant unit and mathematical operations can be performed on it usually producing a new measurement. The distinction between fixed_measurement and measurement is that the unit definition of fixed_measurement is constant and any assignments get automatically converted, fixed_measurement's are implicitly convertible to a measurement of the same value type. fixed_measurement also support some operation with pure numbers by assuming a unit that are not allowed on regular measurement types.
  • fixed_precise_measurement is similar to fixed_measurement except it uses precise_unit as a base and uses a double for the measurement instead of a template, and it is 24 bytes instead of 16.
  • uncertain_measurement is similar to measurement except it uses a 32-bit float for the value and contains an uncertainty field which is also 32-bits. Mathematical operations on uncertain_measurements will propagate the uncertainty and convert it as necessary. The class also includes functions for simple-uncertainty propagation like simple_subtract which just sums the uncertainties. The sum-of-squares methods is used in the overloaded math operators. Mathematical operations are supported on the type and it interoperates with measurements.

Unit representation

The unit class consists of a multiplier and a representation of base units. The seven SI units + radians + currency units + count units. In addition a unit has 4 flags, per-unit for per unit or ratio units. One flag[i_flag] that is a representation of imaginary units, one flags for a variety of purposes and to differentiate otherwise similar units[e_flag]. And a flag to indicate an equation unit. Due to the requirement that the base units fit into a 4-byte type the represented powers of the units are limited. The table below shows the bit representation range and observed range of use in equations and observed usage

Base Unit Bits Representable range Normal Range Intermediate Operations
meter 4 [-8,+7] [-4,+4] [-6,+6]
kilogram 3 [-4,+3] [-1,+1] [-2,+2]
second 4 [-8,+7] [-4,+4] [-6,+6]
ampere 3 [-4,+3] [-2,+2]
kelvin 3 [-4,+3] [-4,+1]
mole 2 [-2,+1] [-1,+1]
candela 2 [-2,+1] [-1,+1]
currency 2 [-2,+1] [-1,+1]
count 2 [-2,+1] [-1,+1]
radians 3 [-4,+3] [-2,+2]

These ranges were chosen to represent nearly all physical quantities that could be found in various disciplines we have encountered. See Unit Details for additional details on the unit base representation.

The CMake variable UNITS_BASE_TYPE, if set to a 64-bit type like uint64_t, will double the space requirements but also change the ranges to be at least a power of 4 larger than the above table. See CMake Reference for more details.

Discussion points

  • Currency may seem like a unusual choice in units but numbers involving prices are encountered often enough in various disciplines that it is useful to include as part of a unit.
  • Technically count and radians are not units, they are representations of real things. A radian is a representation of rotation around a circle and is therefore distinct from a true unitless quantity even though there are no physical measurements associated with either.
  • Count and mole are theoretically equivalent though as a practical matter using moles for counts of things is a bit odd for example 1 GB of data is ~1.6605*10^-15 mol of data. They are used in different contexts and don't mix very often, the convert functions do convert between them if necessary.
  • This library CANNOT represent fractional unit powers( except for sqrt Hz used in noise density units), and the library follows the order of operation in C++ so IF you have equations that any portion of the operation may exceed the numerical limits on powers even if the result does not, BE CAREFUL.
  • The normal rules about floating point operations losing precision also apply to unit representations with non-integral multipliers.
  • With string conversions there are many units that can be interpreted in multiple ways. In general, the priority was given to units in more common use in the United States, or in power systems and electrical engineering which was the origin of this library.
  • The unit year has different meanings in different contexts. SI defines the default year as yr=365*day=8760*hr the specific domains define it differently. 'year' means 365.25 days in the UCUM domain and the mean tropical year for the astronomy domain.
  • The i_flag functions such that when squared it goes to 0, similar to the imaginary number i*conj(i)=i^0. This is useful for directional units such as compass directions and reactive power in power systems. The e_flag functions as an or operation in multiplication and xor operation during division.
  • Measurement/unit equality is an interesting topic. The library takes a pragmatic approach vs. a precise mathematical approach. The precision of a float is taken to be roughly 7 decimal digit of precision. A double used in the 'precise' values to be 13 decimal digits of precision. This precision is sufficient to run a few operations without going out of tolerance from floating point operations. It also comes into equality, which is nominally taken to be values and units within this tolerance level. So, numbers are rounded to a certain number of digits then compared to within a tolerance level. Some effort was made to make this uniform, but tolerance around the last digit is not exact. Comparison operators for the units and measurements are provided. Equality and inequality use the rounded comparison; greater and less than are exact, while >= and <= check first for > or < conditions then check for equality if needed. There are a few situations that are not totally consistent like 1.0000001*m==1.0*m and 1.0000001*m>1.0*m, but such is nature of floating point operations. So, from a mathematical purity sense this isn't consistent but does mostly what was needed. If the difference between the two values is a subnormal number the equality comparison also evaluates to true, even if that would otherwise be outside the numerical tolerance.

Defined units

There are 2 sets of defined units, many common units are defined in the units namespace, many others are defined in units::precise and subnamespaces. See Defined Units for details on the available units.

Physics constants

A set of physical and numerical constants are defined in the units::constants namespace. More details and a list of available constants are described in Physical Units. Some of the available constants that are measured vs. defined have an uncertain_measurement version available as well that includes the uncertainty.

Building the library

There are two parts of the library a header only portion that can simply be copied and used. There are 5 headers units_decl.hpp declares the underlying classes. units_util.hpp defines some additional helper functions, unit_defintions.hpp declares constants for many of the units, and units.hpp which is the primary public interface to units,units_math.hpp is an optional extra header that includes additional mathematical operations. If units.hpp is included in another file and the variable UNITS_HEADER_ONLY is defined then none of the functions that require the cpp files are defined. These header files can simply be included in your project and used with no additional building required.

The second part is a few cpp files that can add some additional functionality. The primary additions from the cpp file are an ability to take roots of units and measurements and convert to and from strings. The units_conversion_maps.hpp file defines many of string conversions used in the converters to and from strings. These files can be built as a standalone static library or included in the source code of whatever project want to use them. The code should build with an C++11 or greater compiler. It currently defaults to build with C++14. Most of the library is tagged with constexpr so can be run at compile time to link units that are known at compile time. Unit numerical conversions are not at compile time, so will have a run-time cost. A quick_convert function is available to do simple conversions. with a requirement that the units have the same base and not be an equation unit. The cpp code also includes some functions for commodities and will eventually have r20 and x12 conversions, though this is not complete yet.

It builds by default with the static library. Using UNIT_BUILD_SHARED_LIBRARY or BUILD_SHARED_LIBS will build the shared library instead. Either one can be used with CMake as a units::units target. The header only library target is also generated units::header_only. The shared/static library has a CMake target units::units.

Try it out

If you want to try out the string conversion components. There is server running that can do the string conversions

Unit String Conversions

For more details see the documentation

Converter Application

A converter command line application can be built as part the units library by setting UNITS_BUILD_CONVERTER_APP=ON in the CMake build. This is a simple command line script that takes a measurement entered on the command line and a unit to convert to and returns the new value by itself or part of a string output with the units either simplified or in original form. If you want to run your own converter web server, a docker container is available on dockerhub.

Usage

Many units are defined as constexpr objects and can be used directly

#include "units/units.hpp"
using namespace units

measurement length1=45.0*m;
measurement length2=20.0*m;

measurement area=length1*length2;

std::cout<<"the area is "<<area<< " or "<<area.convert_to(ft.pow(2))<<".\n";

Unit methods

These operations apply to units and precise_units

  • <unit>(<unit_data>) construct from a base unit_data
  • <unit>(<unit_data>, double multiplier) construct a unit from a base data and a multiplier
  • <unit>(double multiplier, <unit>) construct from a multiplier and another unit
  • also available are copy constructor and copy assignments
  • <unit> inv() generate a new unit containing the inverse unit m.inv()= 1/m
  • <unit> pow(int power) take a unit to power(NOTE: beware of limits on power representations of some units, things will always wrap so it is defined but may not produce what you expect). power can be negative.
  • bool is_exactly_the_same(<unit>) compare two units and check for exact equivalence in both the unit_data and the multiplier, NOTE: this uses double equality
  • bool has_same_base(<unit>|<unit_data>) check if the <unit_data> is the same
  • equivalent_non_counting(<unit>|<unit_data>) check if the units are equivalent ignoring the counting bases
  • bool is_convertible(<unit>) check if the units are convertible to each other, currently checks equivalent_non_counting(), but some additional conditions might be allowed in the future to better match convert.
  • int unit_type_count() count the number of unit bases used, (does not take into consideration powers, just if the dimension is used or not.
  • bool is_per_unit() true if the unit has the per_unit flag active
  • bool is_equation() true if the unit has the equation flag active
  • bool has_i_flag() true if the i_flag is marked active
  • bool has_e_flag() true if the e_flag is marked active
  • double multiplier() return the unit multiplier as a double
  • float multiplier_f() return the unit multiplier as a float
  • <float|double> cround() round the multiplier to an appropriate number of digits
  • <unit_data> base_units() get the base units
  • void clear_flags() clear any flags associated with the units

For precise_units only

  • commodity() get the commodity of the unit
  • commodity(int commodity) assign a commodity to the precise_unit.

Unit Operators

There are also several operator overloads that apply to units and precise_units.

  • <unit>=<unit>*<unit> generate a new unit with the units multiplied ie m*m does what you might expect and produces a new unit with m^2

  • <unit>=<unit>/<unit> generate a new unit with the units divided ie m/s does what you might expect and produces a new unit with meters per second. NOTE: m/m will produce 1 it will not automatically produce a pu though we are looking at how to make a 'pu_m*m=m' so units like strain might work smoothly.

  • bool <unit>==<unit> compare two units. this does a rounding compare so there is some tolerance to roughly 7 significant digits for <unit> and 13 significant digits for <precise_unit>.

  • bool <unit>!=<unit> the opposite of ==

precise_units can usually operate with a precise_unit or unit, unit usually can't operate on precise_unit.

Unit free functions

These functions are not class methods but operate on units

  • std::hash<unit>() generate a hash code of a unit, for things like use in std::unordered_map or other purposes.
  • <unit> unit_cast(<unit>) convert a unit into , mainly used to convert a precise_unit into a regular unit.
  • bool is_unit_cast_lossless(<precise_unit>) returns true if the multiplier in a precise_unit can be converted exactly into a float.
  • bool isnan(<unit>) true if the unit multiplier is a NaN.
  • bool isinf(<unit>) true if the unit multiplier is infinite.
  • double quick_convert(<unit>, <unit>) generate the conversion factor between two units. This function is constexpr.
  • double quick_convert(double factor, <unit>, <unit>) convert a specific value from one unit to another, function is constexpr but does not cover all possible conversions.
  • double convert(<unit>, <unit>) generate the conversion factor between two units.
  • double convert(double val, <unit>, <unit>) convert a value from one unit to another.
  • double convert(double val, <unit>, <unit>, double baseValue) do a conversion assuming a particular basevalue for per unit conversions.
  • double convert(double val, <unit>, <unit>, double basePower, double baseVoltage) do a conversion using base units, specifically making assumptions about per unit values in power systems.
  • bool is_error(<unit>) check if the unit is a special error unit.
  • bool is_default(<unit>) check if the unit is a special default unit.
  • bool is_valid(<unit>) check to make sure the unit is not an invalid unit( the multiplier is not a NaN) and the unit_data does not match the defined invalid_unit.
  • bool is_temperature(<unit>) return true if the unit is a temperature unit such as F or C or one of the other temperature units.
  • bool is_normal(<unit>) return true if the multiplier is a normal number, there is some defined unit base, not the identity unit, the multiplier is not negative, and not the default unit. basically a simple way to check if you have some non-special unit that will behave more or less how you expect it to.
  • <unit> root(<unit>, int power) non constexpr, take the root of a unit, produces error unit if the root is not well defined. power can be negative.
  • <unit> sqrt(<unit>) convenience function for taking the sqrt of a unit.

Measurement Operations

  • <measurement>(val, <unit>) construct a unit from a value and unit object.
  • double value() const get the measurement value as a double.
  • <measurement> convert_to(<unit>) const convert the value in the measurement to another unit base
  • <measurement> convert_to_base() const convert to a base unit, i.e. a unit whose multiplier is 1.0
  • <unit> units() const get the units used as a basis for the measurement
  • <unit> as_unit() const take the measurement as is and convert it into a single unit. For Examples say a was 10 m. calling as_unit() on that measurement would produce a unit with a multiplier of 10 and a base of meters.
  • double value_as(<unit>) get the value of a measurement as if it were measured in <unit>

Uncertain measurement methods

Uncertain measurements have a few additional functions to support the uncertainty calculations

  • simple_add, simple_subtract, simple_product, simple_divide are equivalent to the associated operator but use simple uncertainty propagation. simple_product and simple_divide are constexpr when compiled with C++14 or greater. The regular operators use root sum of squares propagation.
  • double uncertainty() get the numerical value of the uncertainty.
  • float uncertainty_f() get the numerical value of the uncertainty as a float.
  • measurement uncertainty_measurement() get the uncertainty as a separate measurement
  • double uncertainty_as(<unit>) get the uncertainty in terms of a particular unit.
  • double fractional_uncertainty() get the uncertainty as a fraction of the value.

Measurement operators

There are several operator overloads which work on measurements or units to produce measurements.

  • '*', '/', '+','-' are all defined for mathematical operations on a measurement and produce another measurement.
  • % *, and / are defined for <measurement><op><double>
  • *, and / are defined for <double><op><measurement>

Notes: for regular measurements, + and - are not defined for doubles due to ambiguity of what that operation means. For fixed_measurement types this is defined as the units are known at construction and cannot change. For fixed_measurement types if the operator would produce a new measurement with the same units it will be a fixed measurement, if not it reverts to a regular measurement.

  • ==, !=, >, <, >=, <= are defined for all measurement comparisons
  • <measurement>=<double>*<unit>
  • <measurement>=<unit>*<double>
  • <measurement>=<unit>/<double>
  • <measurement>=<double>/<unit> basically calling a number multiplied or divided by a <unit> produces a measurement, specifically unit produces a measurement and precise_unit produces a precise_measurement.

Measurement functions

These free functions work on any of different measurement types.

  • measurement measurement_cast(<measurement>) convert a precise_measurement into measurement
  • fixed_measurement measurement_cast(<fixed_measurement>) convert a fixed_precise_measurement or fixed_measurement into a fixed_measurement
  • <measurement> pow(<measurement>, int) generate a measurement which is a specific power of another measurement
  • <measurement> root(<measurement>, int) generate a root of a measurement
  • <measurement> sqrt(<measurement>) take the square root of a measurement of any kind, the units need to have a valid root.
  • bool is_valid(<measurement>) will result in true if the underlying unit is valid and the value is not a nan.
  • bool isnormal(<measurement>) will result in true if the underlying unit is normal and the value is not a nan or infinity or subnormal - zero is allowed in the measurement value, but not the unit multiplier.

Additional math operations

A few additional math operations are available in the "unit_math.hpp" header on all measurement types. This is a header only and is not included by default. It adds math operations including ceil,floor,trunc,round,fmod,sin,cos,tan. The trigonometric operations are only defined for measurements that are convertible to radians. Additionally, three type traits are defined including is_measurement<X>, is_precise_measurement<X> and is_unit<X>. These traits are only true for defined measurement types and unit types respectively.

Available library functions

String Conversions

The flags argument is optional in all cases. If not specified it uses the default flags, which can be user declared at run or compile time.

  • precise_unit unit_from_string( string, flags): convert a string representation of units into a precise_unit value.
  • unit unit_cast_from_string( string, flags): convert a string representation of units into a unit value NOTE: same as previous function except has an included unit cast for convenience.
  • precise_unit default_unit( string): get a unit associated with a particular kind of measurement. for example default_unit("length") would return precise::m
  • precise_measurement measurement_from_string(string,flags): convert a string to a precise_measurement.
  • measurement measurement_cast_from_string(string,flags): convert a string to a measurement calls measurement_from_string and does a measurement_cast.
  • uncertain_measurement uncertain_measurement_from_string(string,flags): convert a string to an uncertain measurement. Typically the string will have some segment with a ยฑ, +/- or the html equivalent in it to signify the uncertainty. The compact notation for uncertainties is also supported for example 3.5235(19).
  • std::string to_string([unit|measurement],flags) : convert a unit or measurement to a string, all defined units or measurements listed above are supported. The eventual plan is to support a couple different standards for the strings through the flags, But for now they don't do much.

For more description of the possible flags see flags. The default flags can be set through setDefaultFlags(std::uint32_t flags) and retrieved through getDefaultFlags(). The initial default flag is OU but can be modified through UNITS_DEFAULT_MATCH_FLAGS compile flag.

User Defined Units

  • addUserDefinedUnit(std::string name, precise_unit un) add a new unit that can be used in the string operations.
  • clearUserDefinedUnits() remove all user defined units from the library.
  • disableUserDefinedUnits() there is a(likely small-an additional unordered map lookup) performance hit in the string conversions functions if custom units are used so they can be disabled completely if desired.
  • enableUserDefinedUnits() enable the use of UserDefinedUnits. they are enabled by default.
  • addUserDefinedInputUnit(std::string name, precise_unit un) add a new unit used only for unit input
  • addUserDefinedOutputUnit(std::string name, precise_unit un) add an output string for a specific unit
  • removeUserDefinedUnit(std::string name) remove a specific unit string previously added as a userDefinedUnit can be input, output, or both.

For more details see User Defined Units.

Unit Domains

  • setUnitsDomain(std::uint32_t newDomain) : set a default domain to use for string translations if not overridden using the flags argument. The function returns the previous domain if the domain only needs to be set temporarily.

For more description of the Unit Domains supported see Domains. Use the constants available in units::domains as the argument. The numerical value is subject to change in future releases as this gets refined.

Commodities

The units library has some support for commodities, more might be added in the future. Commodities are supported in precise_units.

  • std::uint32_t getCommodity(std::string commodity) get a commodity code from a string.
  • std::string getCommodityName(std::uint32_t) get the name of a commodity from its code
  • addUserDefinedCommodity(std::string name, std::uint32_t code) add a new commodity that can be used in the string operations.
  • clearUserDefinedCommodities() remove all user defined commodities from the library.
  • disableUserDefinedCommodities() there is a (likely small) performance hit in string conversions if custom commodities are used so they can be disabled completely if desired.
  • enableUserDefinedCommodities() enable the use of UserDefinedCommodities. User defined commodities are enabled by default. Defining user specified commodities is thread-safe.

Other unit definitions

These are all only partially implemented, not recommended for use yet

  • precise_unit x12_unit(string) get a unit from an X12 string.
  • precise_unit dod_unit(string) get a unit from a DOD code string.
  • precise_unit r20_unit(string) get a unit from an r20 code string.

Contributions

Contributions are welcome. See Contributing for more details and Contributors for a list of the current and past Contributors to this project.

Project Using the Units Library

Anyone else using the units library? Please let us know.

Release

This units library is distributed under the terms of the BSD-3 clause license. All new contributions must be made under this license. LICENSE

SPDX-License-Identifier: BSD-3-Clause

LLNL-CODE-773786

units's People

Contributors

codacy-badger avatar dependabot[bot] avatar gsjaardema avatar helics-bot avatar jl-wynen avatar kerim371 avatar owenarnold avatar petersteneteg avatar phlptp avatar pre-commit-ci[bot] avatar simonheybrock avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

units's Issues

Surprising parse results with `.` and `-`

unit_from_string produces some unexpected results when parsing strings with periods or dashes. E.g. all of the following are equivalent to "m*s":

"m.s"
"m. s"
"m.s."
"m. s."
"m- s"

But spacing matters and "m-s" is parsed as milliseconds.

This came up for us with "a.u." which was intended as 'arbitrary units' but was parsed as "1.66054e-25*m**2*kg**1".

Is it a design choice to interpret . as * and drop - when there are no numbers?

Favoring SI base units in string formatting?

A user reported a problem formatting units such as kJ / mol โ€” this outputs kW / kat. This is unexpected, since mol is an SI base units, whereas kat is not. I would have expected that the string formatting tries to stick to SI (or other) base units, before moving on to derived units.

Obviously, both J and W are derived, but is there a way to prefer string outputs with the smaller number of derived units, i.e., "1 derived + 1 base" should be chosen over "2 derived"?

Format arbitrary unit nicely

Currently, the following

auto u = units::unit_from_string("arbitraryunit");
std::cout << to_string(u) << '\n';

prints CXCUN[1]. It would be nice if it printed arbitraryunit or something along those lines.

-Wstrict-aliasing warnings

There are some strict-aliasing warnings in later Gcc versions that should be fixed.

In file included from /home/travis/build/GMLC-TDC/HELICS/ThirdParty/units/units/unit_definitions.hpp:9:0,
                 from /home/travis/build/GMLC-TDC/HELICS/ThirdParty/units/units/units.hpp:8,
                 from /home/travis/build/GMLC-TDC/HELICS/ThirdParty/units/units/units.cpp:7:
/home/travis/build/GMLC-TDC/HELICS/ThirdParty/units/units/units_decl.hpp: In member function โ€˜std::size_t std::hash<units::detail::unit_data>::operator()(const units::detail::unit_data&) constโ€™:
/home/travis/build/GMLC-TDC/HELICS/ThirdParty/units/units/units_decl.hpp:315:78: warning: dereferencing type-punned pointer might break strict-aliasing rules [-Wstrict-aliasing]
         return hash<unsigned int>()(*reinterpret_cast<const unsigned int*>(&x));
                                                                              ^
[  3%] Building CXX object ThirdParty/utilities/gmlc/utilities/CMakeFiles/gmlc_utilities.dir/charMapper.cpp.o
[  3%] Building CXX object ThirdParty/jsoncpp/src/lib_json/CMakeFiles/jsoncpp_lib.dir/json_value.cpp.o
[  3%] Building CXX object ThirdParty/utilities/gmlc/utilities/CMakeFiles/gmlc_utilities.dir/string_viewOps.cpp.o
[  4%] Building CXX object ThirdParty/units/units/CMakeFiles/units-static.dir/x12_conv.cpp.o
[  4%] Building CXX object ThirdParty/fmtlib/CMakeFiles/fmt.dir/src/posix.cc.o
[  4%] Building CXX object ThirdParty/utilities/gmlc/utilities/CMakeFiles/gmlc_utilities.dir/stringOps.cpp.o
In file included from /home/travis/build/GMLC-TDC/HELICS/ThirdParty/units/units/unit_definitions.hpp:9:0,
                 from /home/travis/build/GMLC-TDC/HELICS/ThirdParty/units/units/units.hpp:8,
                 from /home/travis/build/GMLC-TDC/HELICS/ThirdParty/units/units/x12_conv.cpp:7:
/home/travis/build/GMLC-TDC/HELICS/ThirdParty/units/units/units_decl.hpp: In member function โ€˜std::size_t std::hash<units::detail::unit_data>::operator()(const units::detail::unit_data&) constโ€™:
/home/travis/build/GMLC-TDC/HELICS/ThirdParty/units/units/units_decl.hpp:315:78: warning: dereferencing type-punned pointer might break strict-aliasing rules [-Wstrict-aliasing]
         return hash<unsigned int>()(*reinterpret_cast<const unsigned int*>(&x));
                                                                              ^
[  4%] Building CXX object ThirdParty/jsoncpp/src/lib_json/CMakeFiles/jsoncpp_lib.dir/json_writer.cpp.o

the warning should be added to compilation and the warnings fixed.

Issues with parsing single-letter prefixes such as for `atto`

For certain lower-cases unit prefixes (I have noticed for atto and femto) the string parser also interprets the uppercase letters as this prefix. Examples:

  • Uppercase single-letter prefixes are accepted, Am and Fm work, but I believe they should not?
  • am does not work, gives 0.00029088820866572158rad

Lowercase prefix:

d 0.1m  # correctly parsed, but not formatted?
c cm
m mm
u ยตm
n nm
p pm
f fm
a 0.00029088820866572158rad  # ???
z 9.99999999999999908e-22m  # correctly parsed, but not formatted?
y 9.99999999999999924e-25m  # correctly parsed, but not formatted?

Uppercased prefixes (should usually not work, unless it matches something else):

D 0.1m  # should not be accepted?
C cm  # should not be accepted?
M Mm  # mega-meter, correct
U ยตm  # should not be accepted?
N J  # Newton*meter, correct
P 1000000000000000m  # peta-meter, correctly parsed, but not formatted?
F fm  # should not be accepted?
A 1e-18m  # should not be accepted?
Z 1e+21m  # correctly parsed, but not formatted?
Y 9.99999999999999983e+23m  # correctly parsed, but not formatted?

For future reference, here is how the list was produced:

import scipp as sc
prefixes = 'dcmunpfazy'
for prefix in prefixes:
    print(prefix, sc.Unit(f'{prefix}m'))
for prefix in prefixes.upper():
    print(prefix, sc.Unit(f'{prefix}m'))

Incorrect conversion from string to unit

The assertion below does not fail.

#include <iostream>
#include <string>
#include <cassert>

#include "units.hpp"

int main() {
  std::string const mol_m3_str("mol/m^3666");
  units::unit const mol_m3_unit( units::mol/units::m.pow(3) );
  assert( units::unit_from_string( mol_m3_str ) == mol_m3_unit );
  std::cout << mol_m3_str << ' ' << units::to_string( mol_m3_unit ) << '\n';
  return 0;
}

conversion of unit to string

Hi,

Thanks for the nice library. I have been playing with it to convert strings to measurements or units, and so far it works well. When converting back to a string, though, the original representation of the unit is lost. For example, if I define a custom count unit samples, then the string "samples/second" is correctly parsed, but converting the resulting unit back to a string results in Bq. What is the recommended way to preserve the original unit representation?

Separately, I was wondering if the unit Hz should actually be defined as count per second (i.e. counting the number of cycles per second). This would then make it compatible with samples/second (sampling rate) and spikes/second (firing rate of brain cells) that are generally expressed in Hz. Alternatively, I don't define samples and spikes as count units, but then I wonder how I could differentiate after conversion of a string to a measurement between "2" and "2 samples" without parsing the string again myself.

-Fabian

Strange choice of units in to_string

to_string produces strange results for some units. E.g.

to_string(units::unit_from_string("us / angstrom^2"))  // -> 9290304000000s/ft^2
to_string(units::unit_from_string("us / angstrom"))  // -> 10N/mW

Neither of the two cases is particularly readable.

It would be great if the output would be closer to the input. I realise that it is not always so clear what the output should be, especially if the unit is the result of a long computation. But is there a way to improve the current situation?

issue with out of range exceptions

From the fuzzing results there appear to be a few cases that can generate an out-of-range exception, resulting in some variations in how strings are parsed and converted.

Including some variations in how the different compilers treat them.

Admittedly these would be rather strange unit strings, but they do need to be handled appropriately.

Degrees celsius get converted to Kelvin in operations

Given auto u = llnl::units::unit_from_string("degC");, both u*u and pow(u, 2) produce Kelvin squared. It seems that the e-flag gets lost in these operations.
I didn't test other units because I am unsure when the e-flag gets used and how.

"Stress testing" units' string parsing

We had some "fun" with the OpenAI API (using gpt-3.5-turbo) trying to find cases where the unit parser is not working so well. Here is the result for now.

This is not necessarily a request to fix all these, but it opens some questions. My main worry is the high false-positive rate (positive in the sense of "parsed" without returning an error). From my point of view, returning an error would be preferable to returning some very wrong unit combination, even if it comes at the cost of rejecting more user input.

Input Output Comment
gramm 6.47989100000000217e-23g*m this would be a typo, or German spelling
kilogramm 6.47989100000000188e-20g*m ?
cars/hour/meter^2 1/h ?
cm+cm cm^2 ?
fps ft/s not sure if this is the most common interpretation? Isn't frames per second more common?
Metres Unsupported unit. Not so important, but most other variations seem to work
degrees C 0.0174532925199432955s*A*rad would expect an error instead of bad parsing
inchy 4830819306288062m^3/[c] would expect an error instead of bad parsing
fln_oz 9.7132811577355196e-08g*cd/m^2 would expect an error instead of bad parsing
kM kmol/L correct, but may be surprising

expression did not evaluate to a constant

The initialization of the time constants can lead to the following error when using msvc2019 "expression did not evaluate to a constant"
when parentheses are replaced with curly brackets the problem does not occur

unit_definitions.hpp
namespace time {
constexpr precise_unit min{60.0, s}; //this fixes the problem for me
constexpr precise_unit ms{0.001, s};
constexpr precise_unit ns{1e-9, s};
constexpr precise_unit hr{60.0, min};
constexpr precise_unit h{60.0, min};
constexpr precise_unit day{24.0, hr};
constexpr precise_unit week{7.0, day};
constexpr precise_unit yr{8760.0, hr}; // median calendar year;
constexpr precise_unit fortnight{14, day};
...

Namespace name?

We are trying to use LLNL/units in another project which also defines a (nested) namespace units. This clashes with namespace units from this. Ideally having units nested in another namespace would solve this issue, e.g., namespace llnl::units.

I assume changing this would break other libraries using units, so probably another option is required:

I have two solutions for this:

  • We are using LLNL/units as a cmake external project. We apply a patch to add a top level namespace llnl. Works, but requires maintainance when units updates and patching fails.
  • Add a cmake option to define the top level namespace. I did this on https://github.com/SimonHeybrock/units/tree/cmake-define-namespace. If you think you would be willing to accept such a change, I would be happy to open a pull request from this.

A different but related question is related to the include path: Currently units is the top-level directory, so users of the library include, e.g., <units/units.hpp>. Since "units" is quite generic, having another prefix would be useful, for example as done by boost: <boost/units/units.hpp>.

Compilation errors on Visual Studio with C++20 standard

Getting these errors:

2021-02-08T14:13:55.0940960Z D:\a\1\a\build\llnl-units-src\units\units.cpp(139,34): error C2440: 'initializing': cannot convert from 'initializer list' to 'std::unordered_map<llnl::units::unit,const char *,std::hash<llnl::units::unit>,std::equal_to<llnl::units::unit>,std::allocator<std::pair<const llnl::units::unit,const char *>>>' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:55.1301330Z D:\a\1\a\build\llnl-units-src\units\units.cpp(315,44): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:55.4330617Z   r20_conv.cpp
2021-02-08T14:13:56.0771679Z D:\a\1\a\build\llnl-units-src\units\units.cpp(2400,33): error C2440: 'initializing': cannot convert from 'initializer list' to 'std::unordered_map<std::string,llnl::units::precise_unit,std::hash<std::string>,std::equal_to<std::string>,std::allocator<std::pair<const std::string,llnl::units::precise_unit>>>' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3001494Z D:\a\1\a\build\llnl-units-src\units\units.cpp(4504,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3600698Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5291,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3605760Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5291,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]

I tried to understand what is wrong, but failed for now. I first thought it was a problem with using const char * in a map, but one of the errors (line 2400) happens for a map without strings, so that can't be it?

Versions:

2021-02-08T14:11:22.5461743Z + cmake -G 'Visual Studio 16 2019' -A x64 -DCMAKE_CXX_STANDARD=20 -DPYTHON_EXECUTABLE=/c/Miniconda/envs/scipp-developer/python '-DCMAKE_INSTALL_PREFIX=D:\a\1\a/install' -DCMAKE_BUILD_TYPE=Release 'D:\a\1\s'
2021-02-08T14:11:48.4399026Z -- The C compiler identification is MSVC 19.28.29336.0
2021-02-08T14:11:50.6122933Z -- The CXX compiler identification is MSVC 19.28.29336.0

Complete log:

2021-02-08T14:05:02.7381259Z ##[section]Starting: Windows
2021-02-08T14:05:02.9130956Z ##[section]Starting: Initialize job
2021-02-08T14:05:02.9132366Z Agent name: 'Azure Pipelines 3'
2021-02-08T14:05:02.9132745Z Agent machine name: 'fv-az60-94'
2021-02-08T14:05:02.9132989Z Current agent version: '2.181.1'
2021-02-08T14:05:02.9303369Z ##[group]Operating System
2021-02-08T14:05:02.9303650Z Microsoft Windows Server 2019
2021-02-08T14:05:02.9303838Z 10.0.17763
2021-02-08T14:05:02.9304009Z Datacenter
2021-02-08T14:05:02.9304172Z ##[endgroup]
2021-02-08T14:05:02.9304369Z ##[group]Virtual Environment
2021-02-08T14:05:02.9304585Z Environment: windows-2019
2021-02-08T14:05:02.9304788Z Version: 20210202.1
2021-02-08T14:05:02.9305135Z Included Software: https://github.com/actions/virtual-environments/blob/win19/20210202.1/images/win/Windows2019-Readme.md
2021-02-08T14:05:02.9305453Z ##[endgroup]
2021-02-08T14:05:02.9306492Z Current image version: '20210202.1'
2021-02-08T14:05:02.9313499Z Agent running as: 'VssAdministrator'
2021-02-08T14:05:02.9357540Z Prepare build directory.
2021-02-08T14:05:02.9614445Z Set build variables.
2021-02-08T14:05:02.9640129Z Download all required tasks.
2021-02-08T14:05:02.9742693Z Downloading task: PowerShell (2.180.1)
2021-02-08T14:05:04.4808897Z Downloading task: Bash (3.179.0)
2021-02-08T14:05:04.8547978Z Checking job knob settings.
2021-02-08T14:05:04.8557766Z    Knob: AgentToolsDirectory = C:/hostedtoolcache/windows Source: ${AGENT_TOOLSDIRECTORY} 
2021-02-08T14:05:04.8559112Z    Knob: AgentPerflog = c:\vsts\perflog Source: ${VSTS_AGENT_PERFLOG} 
2021-02-08T14:05:04.8560283Z Finished checking job knob settings.
2021-02-08T14:05:04.8894986Z Start tracking orphan processes.
2021-02-08T14:05:04.9017295Z ##[section]Finishing: Initialize job
2021-02-08T14:05:04.9366782Z ##[section]Starting: Checkout scipp/scipp@refs/pull/1663/merge to s
2021-02-08T14:05:05.0325583Z ==============================================================================
2021-02-08T14:05:05.0326119Z Task         : Get sources
2021-02-08T14:05:05.0326752Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.
2021-02-08T14:05:05.0327029Z Version      : 1.0.0
2021-02-08T14:05:05.0327406Z Author       : Microsoft
2021-02-08T14:05:05.0328076Z Help         : [More Information](https://go.microsoft.com/fwlink/?LinkId=798199)
2021-02-08T14:05:05.0328411Z ==============================================================================
2021-02-08T14:05:05.8712318Z Syncing repository: scipp/scipp (GitHub)
2021-02-08T14:05:05.8818643Z Prepending Path environment variable with directory containing 'git.exe'.
2021-02-08T14:05:05.8862382Z ##[command]git version
2021-02-08T14:05:07.4695426Z git version 2.28.0.windows.1
2021-02-08T14:05:07.4711737Z ##[command]git lfs version
2021-02-08T14:05:08.8705666Z git-lfs/2.13.2 (GitHub; windows amd64; go 1.14.13; git fc664697)
2021-02-08T14:05:08.8877675Z ##[command]git init "D:\a\1\s"
2021-02-08T14:05:09.0888479Z Initialized empty Git repository in D:/a/1/s/.git/
2021-02-08T14:05:09.0947558Z ##[command]git remote add origin https://github.com/scipp/scipp
2021-02-08T14:05:09.1768175Z ##[command]git config gc.auto 0
2021-02-08T14:05:09.2570245Z ##[command]git config --get-all http.https://github.com/scipp/scipp.extraheader
2021-02-08T14:05:09.2961105Z ##[command]git config --get-all http.proxy
2021-02-08T14:05:09.3422697Z ##[command]git config http.version HTTP/1.1
2021-02-08T14:05:09.3803956Z ##[command]git -c http.extraheader="AUTHORIZATION: basic ***" fetch --force --tags --prune --progress --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/pull/1663/merge:refs/remotes/pull/1663/merge
2021-02-08T14:05:12.1978163Z remote: Enumerating objects: 185, done.        
2021-02-08T14:05:12.1980723Z remote: Counting objects:   0% (1/185)        
2021-02-08T14:05:12.1984579Z remote: Counting objects:   1% (2/185)        
2021-02-08T14:05:12.1987671Z remote: Counting objects:   2% (4/185)        
2021-02-08T14:05:12.1990152Z remote: Counting objects:   3% (6/185)        
2021-02-08T14:05:12.1995738Z remote: Counting objects:   4% (8/185)        
2021-02-08T14:05:12.1998478Z remote: Counting objects:   5% (10/185)        
2021-02-08T14:05:12.2000917Z remote: Counting objects:   6% (12/185)        
2021-02-08T14:05:12.2003346Z remote: Counting objects:   7% (13/185)        
2021-02-08T14:05:12.2005832Z remote: Counting objects:   8% (15/185)        
2021-02-08T14:05:12.2007977Z remote: Counting objects:   9% (17/185)        
2021-02-08T14:05:12.2010008Z remote: Counting objects:  10% (19/185)        
2021-02-08T14:05:12.2012047Z remote: Counting objects:  11% (21/185)        
2021-02-08T14:05:12.2014159Z remote: Counting objects:  12% (23/185)        
2021-02-08T14:05:12.2016311Z remote: Counting objects:  13% (25/185)        
2021-02-08T14:05:12.2018313Z remote: Counting objects:  14% (26/185)        
2021-02-08T14:05:12.2020951Z remote: Counting objects:  15% (28/185)        
2021-02-08T14:05:12.2022976Z remote: Counting objects:  16% (30/185)        
2021-02-08T14:05:12.2025009Z remote: Counting objects:  17% (32/185)        
2021-02-08T14:05:12.2026793Z remote: Counting objects:  18% (34/185)        
2021-02-08T14:05:12.2028634Z remote: Counting objects:  19% (36/185)        
2021-02-08T14:05:12.2030441Z remote: Counting objects:  20% (37/185)        
2021-02-08T14:05:12.2032344Z remote: Counting objects:  21% (39/185)        
2021-02-08T14:05:12.2034216Z remote: Counting objects:  22% (41/185)        
2021-02-08T14:05:12.2035809Z remote: Counting objects:  23% (43/185)        
2021-02-08T14:05:12.2037391Z remote: Counting objects:  24% (45/185)        
2021-02-08T14:05:12.2038993Z remote: Counting objects:  25% (47/185)        
2021-02-08T14:05:12.2042336Z remote: Counting objects:  26% (49/185)        
2021-02-08T14:05:12.2044496Z remote: Counting objects:  27% (50/185)        
2021-02-08T14:05:12.2046196Z remote: Counting objects:  28% (52/185)        
2021-02-08T14:05:12.2047765Z remote: Counting objects:  29% (54/185)        
2021-02-08T14:05:12.2049490Z remote: Counting objects:  30% (56/185)        
2021-02-08T14:05:12.2144194Z remote: Counting objects:  31% (58/185)        
2021-02-08T14:05:12.2166831Z remote: Counting objects:  32% (60/185)        
2021-02-08T14:05:12.2168037Z remote: Counting objects:  33% (62/185)        
2021-02-08T14:05:12.2168980Z remote: Counting objects:  34% (63/185)        
2021-02-08T14:05:12.2169865Z remote: Counting objects:  35% (65/185)        
2021-02-08T14:05:12.2170721Z remote: Counting objects:  36% (67/185)        
2021-02-08T14:05:12.2171591Z remote: Counting objects:  37% (69/185)        
2021-02-08T14:05:12.2172502Z remote: Counting objects:  38% (71/185)        
2021-02-08T14:05:12.2173366Z remote: Counting objects:  39% (73/185)        
2021-02-08T14:05:12.2174238Z remote: Counting objects:  40% (74/185)        
2021-02-08T14:05:12.2175104Z remote: Counting objects:  41% (76/185)        
2021-02-08T14:05:12.2176070Z remote: Counting objects:  42% (78/185)        
2021-02-08T14:05:12.2176947Z remote: Counting objects:  43% (80/185)        
2021-02-08T14:05:12.2177787Z remote: Counting objects:  44% (82/185)        
2021-02-08T14:05:12.2178580Z remote: Counting objects:  45% (84/185)        
2021-02-08T14:05:12.2179361Z remote: Counting objects:  46% (86/185)        
2021-02-08T14:05:12.2180215Z remote: Counting objects:  47% (87/185)        
2021-02-08T14:05:12.2181006Z remote: Counting objects:  48% (89/185)        
2021-02-08T14:05:12.2182722Z remote: Counting objects:  49% (91/185)        
2021-02-08T14:05:12.2183519Z remote: Counting objects:  50% (93/185)        
2021-02-08T14:05:12.2184319Z remote: Counting objects:  51% (95/185)        
2021-02-08T14:05:12.2185135Z remote: Counting objects:  52% (97/185)        
2021-02-08T14:05:12.2185914Z remote: Counting objects:  53% (99/185)        
2021-02-08T14:05:12.2186714Z remote: Counting objects:  54% (100/185)        
2021-02-08T14:05:12.2187516Z remote: Counting objects:  55% (102/185)        
2021-02-08T14:05:12.2188953Z remote: Counting objects:  56% (104/185)        
2021-02-08T14:05:12.2189744Z remote: Counting objects:  57% (106/185)        
2021-02-08T14:05:12.2190548Z remote: Counting objects:  58% (108/185)        
2021-02-08T14:05:12.2191571Z remote: Counting objects:  59% (110/185)        
2021-02-08T14:05:12.2192638Z remote: Counting objects:  60% (111/185)        
2021-02-08T14:05:12.2193553Z remote: Counting objects:  61% (113/185)        
2021-02-08T14:05:12.2194448Z remote: Counting objects:  62% (115/185)        
2021-02-08T14:05:12.2195281Z remote: Counting objects:  63% (117/185)        
2021-02-08T14:05:12.2196152Z remote: Counting objects:  64% (119/185)        
2021-02-08T14:05:12.2197026Z remote: Counting objects:  65% (121/185)        
2021-02-08T14:05:12.2197985Z remote: Counting objects:  66% (123/185)        
2021-02-08T14:05:12.2198836Z remote: Counting objects:  67% (124/185)        
2021-02-08T14:05:12.2199694Z remote: Counting objects:  68% (126/185)        
2021-02-08T14:05:12.2200564Z remote: Counting objects:  69% (128/185)        
2021-02-08T14:05:12.2201462Z remote: Counting objects:  70% (130/185)        
2021-02-08T14:05:12.2202373Z remote: Counting objects:  71% (132/185)        
2021-02-08T14:05:12.2203235Z remote: Counting objects:  72% (134/185)        
2021-02-08T14:05:12.2204091Z remote: Counting objects:  73% (136/185)        
2021-02-08T14:05:12.2204934Z remote: Counting objects:  74% (137/185)        
2021-02-08T14:05:12.2205788Z remote: Counting objects:  75% (139/185)        
2021-02-08T14:05:12.2206644Z remote: Counting objects:  76% (141/185)        
2021-02-08T14:05:12.2207482Z remote: Counting objects:  77% (143/185)        
2021-02-08T14:05:12.2208791Z remote: Counting objects:  78% (145/185)        
2021-02-08T14:05:12.2209742Z remote: Counting objects:  79% (147/185)        
2021-02-08T14:05:12.2210599Z remote: Counting objects:  80% (148/185)        
2021-02-08T14:05:12.2211434Z remote: Counting objects:  81% (150/185)        
2021-02-08T14:05:12.2212442Z remote: Counting objects:  82% (152/185)        
2021-02-08T14:05:12.2213313Z remote: Counting objects:  83% (154/185)        
2021-02-08T14:05:12.2214151Z remote: Counting objects:  84% (156/185)        
2021-02-08T14:05:12.2215010Z remote: Counting objects:  85% (158/185)        
2021-02-08T14:05:12.2215871Z remote: Counting objects:  86% (160/185)        
2021-02-08T14:05:12.2216722Z remote: Counting objects:  87% (161/185)        
2021-02-08T14:05:12.2217554Z remote: Counting objects:  88% (163/185)        
2021-02-08T14:05:12.2218407Z remote: Counting objects:  89% (165/185)        
2021-02-08T14:05:12.2219263Z remote: Counting objects:  90% (167/185)        
2021-02-08T14:05:12.2220135Z remote: Counting objects:  91% (169/185)        
2021-02-08T14:05:12.2221005Z remote: Counting objects:  92% (171/185)        
2021-02-08T14:05:12.2224244Z remote: Counting objects:  93% (173/185)        
2021-02-08T14:05:12.2224855Z remote: Counting objects:  94% (174/185)        
2021-02-08T14:05:12.2225432Z remote: Counting objects:  95% (176/185)        
2021-02-08T14:05:12.2226100Z remote: Counting objects:  96% (178/185)        
2021-02-08T14:05:12.2226698Z remote: Counting objects:  97% (180/185)        
2021-02-08T14:05:12.2227147Z remote: Counting objects:  98% (182/185)        
2021-02-08T14:05:12.2227658Z remote: Counting objects:  99% (184/185)        
2021-02-08T14:05:12.2228064Z remote: Counting objects: 100% (185/185)        
2021-02-08T14:05:12.2228496Z remote: Counting objects: 100% (185/185), done.        
2021-02-08T14:05:12.2228915Z remote: Compressing objects:   0% (1/118)        
2021-02-08T14:05:12.2229333Z remote: Compressing objects:   1% (2/118)        
2021-02-08T14:05:12.2229766Z remote: Compressing objects:   2% (3/118)        
2021-02-08T14:05:12.2230166Z remote: Compressing objects:   3% (4/118)        
2021-02-08T14:05:12.2230578Z remote: Compressing objects:   4% (5/118)        
2021-02-08T14:05:12.2231000Z remote: Compressing objects:   5% (6/118)        
2021-02-08T14:05:12.2231545Z remote: Compressing objects:   6% (8/118)        
2021-02-08T14:05:12.2231956Z remote: Compressing objects:   7% (9/118)        
2021-02-08T14:05:12.2232423Z remote: Compressing objects:   8% (10/118)        
2021-02-08T14:05:12.2232826Z remote: Compressing objects:   9% (11/118)        
2021-02-08T14:05:12.2233241Z remote: Compressing objects:  10% (12/118)        
2021-02-08T14:05:12.2233656Z remote: Compressing objects:  11% (13/118)        
2021-02-08T14:05:12.2234052Z remote: Compressing objects:  12% (15/118)        
2021-02-08T14:05:12.2234477Z remote: Compressing objects:  13% (16/118)        
2021-02-08T14:05:12.2234887Z remote: Compressing objects:  14% (17/118)        
2021-02-08T14:05:12.2235300Z remote: Compressing objects:  15% (18/118)        
2021-02-08T14:05:12.2235698Z remote: Compressing objects:  16% (19/118)        
2021-02-08T14:05:12.2236112Z remote: Compressing objects:  17% (21/118)        
2021-02-08T14:05:12.2236523Z remote: Compressing objects:  18% (22/118)        
2021-02-08T14:05:12.2236924Z remote: Compressing objects:  19% (23/118)        
2021-02-08T14:05:12.2237335Z remote: Compressing objects:  20% (24/118)        
2021-02-08T14:05:12.2237748Z remote: Compressing objects:  21% (25/118)        
2021-02-08T14:05:12.2238150Z remote: Compressing objects:  22% (26/118)        
2021-02-08T14:05:12.2238570Z remote: Compressing objects:  23% (28/118)        
2021-02-08T14:05:12.2238981Z remote: Compressing objects:  24% (29/118)        
2021-02-08T14:05:12.2239377Z remote: Compressing objects:  25% (30/118)        
2021-02-08T14:05:12.2239790Z remote: Compressing objects:  26% (31/118)        
2021-02-08T14:05:12.2240270Z remote: Compressing objects:  27% (32/118)        
2021-02-08T14:05:12.2240672Z remote: Compressing objects:  28% (34/118)        
2021-02-08T14:05:12.2241083Z remote: Compressing objects:  29% (35/118)        
2021-02-08T14:05:12.2241495Z remote: Compressing objects:  30% (36/118)        
2021-02-08T14:05:12.2241899Z remote: Compressing objects:  31% (37/118)        
2021-02-08T14:05:12.2242369Z remote: Compressing objects:  32% (38/118)        
2021-02-08T14:05:12.2242782Z remote: Compressing objects:  33% (39/118)        
2021-02-08T14:05:12.2243191Z remote: Compressing objects:  34% (41/118)        
2021-02-08T14:05:12.2243605Z remote: Compressing objects:  35% (42/118)        
2021-02-08T14:05:12.2244017Z remote: Compressing objects:  36% (43/118)        
2021-02-08T14:05:12.2244414Z remote: Compressing objects:  37% (44/118)        
2021-02-08T14:05:12.2244828Z remote: Compressing objects:  38% (45/118)        
2021-02-08T14:05:12.2245238Z remote: Compressing objects:  39% (47/118)        
2021-02-08T14:05:12.2245641Z remote: Compressing objects:  40% (48/118)        
2021-02-08T14:05:12.2246053Z remote: Compressing objects:  41% (49/118)        
2021-02-08T14:05:12.2246461Z remote: Compressing objects:  42% (50/118)        
2021-02-08T14:05:12.2246871Z remote: Compressing objects:  43% (51/118)        
2021-02-08T14:05:12.2247272Z remote: Compressing objects:  44% (52/118)        
2021-02-08T14:05:12.2247688Z remote: Compressing objects:  45% (54/118)        
2021-02-08T14:05:12.2248097Z remote: Compressing objects:  46% (55/118)        
2021-02-08T14:05:12.2248503Z remote: Compressing objects:  47% (56/118)        
2021-02-08T14:05:12.2455498Z remote: Compressing objects:  48% (57/118)        
2021-02-08T14:05:12.2456674Z remote: Compressing objects:  49% (58/118)        
2021-02-08T14:05:12.2457518Z remote: Compressing objects:  50% (59/118)        
2021-02-08T14:05:12.2458325Z remote: Compressing objects:  51% (61/118)        
2021-02-08T14:05:12.2459243Z remote: Compressing objects:  52% (62/118)        
2021-02-08T14:05:12.2460066Z remote: Compressing objects:  53% (63/118)        
2021-02-08T14:05:12.2461046Z remote: Compressing objects:  54% (64/118)        
2021-02-08T14:05:12.2462086Z remote: Compressing objects:  55% (65/118)        
2021-02-08T14:05:12.2463134Z remote: Compressing objects:  56% (67/118)        
2021-02-08T14:05:12.2463773Z remote: Compressing objects:  57% (68/118)        
2021-02-08T14:05:12.2464410Z remote: Compressing objects:  58% (69/118)        
2021-02-08T14:05:12.2465032Z remote: Compressing objects:  59% (70/118)        
2021-02-08T14:05:12.2465672Z remote: Compressing objects:  60% (71/118)        
2021-02-08T14:05:12.2466308Z remote: Compressing objects:  61% (72/118)        
2021-02-08T14:05:12.2466948Z remote: Compressing objects:  62% (74/118)        
2021-02-08T14:05:12.2467567Z remote: Compressing objects:  63% (75/118)        
2021-02-08T14:05:12.2468205Z remote: Compressing objects:  64% (76/118)        
2021-02-08T14:05:12.2469035Z remote: Compressing objects:  65% (77/118)        
2021-02-08T14:05:12.2469739Z remote: Compressing objects:  66% (78/118)        
2021-02-08T14:05:12.2470828Z remote: Compressing objects:  67% (80/118)        
2021-02-08T14:05:12.2471713Z remote: Compressing objects:  68% (81/118)        
2021-02-08T14:05:12.2472354Z remote: Compressing objects:  69% (82/118)        
2021-02-08T14:05:12.2472957Z remote: Compressing objects:  70% (83/118)        
2021-02-08T14:05:12.2473561Z remote: Compressing objects:  71% (84/118)        
2021-02-08T14:05:12.2474156Z remote: Compressing objects:  72% (85/118)        
2021-02-08T14:05:12.2474775Z remote: Compressing objects:  73% (87/118)        
2021-02-08T14:05:12.2475366Z remote: Compressing objects:  74% (88/118)        
2021-02-08T14:05:12.2475962Z remote: Compressing objects:  75% (89/118)        
2021-02-08T14:05:12.2476549Z remote: Compressing objects:  76% (90/118)        
2021-02-08T14:05:12.2477125Z remote: Compressing objects:  77% (91/118)        
2021-02-08T14:05:12.2477865Z remote: Compressing objects:  78% (93/118)        
2021-02-08T14:05:12.2478415Z remote: Compressing objects:  79% (94/118)        
2021-02-08T14:05:12.2478997Z remote: Compressing objects:  80% (95/118)        
2021-02-08T14:05:12.2479517Z remote: Compressing objects:  81% (96/118)        
2021-02-08T14:05:12.2480046Z remote: Compressing objects:  82% (97/118)        
2021-02-08T14:05:12.2480571Z remote: Compressing objects:  83% (98/118)        
2021-02-08T14:05:12.2481079Z remote: Compressing objects:  84% (100/118)        
2021-02-08T14:05:12.2481604Z remote: Compressing objects:  85% (101/118)        
2021-02-08T14:05:12.2482126Z remote: Compressing objects:  86% (102/118)        
2021-02-08T14:05:12.2482635Z remote: Compressing objects:  87% (103/118)        
2021-02-08T14:05:12.2483159Z remote: Compressing objects:  88% (104/118)        
2021-02-08T14:05:12.2483682Z remote: Compressing objects:  89% (106/118)        
2021-02-08T14:05:12.2484202Z remote: Compressing objects:  90% (107/118)        
2021-02-08T14:05:12.2484716Z remote: Compressing objects:  91% (108/118)        
2021-02-08T14:05:12.2485246Z remote: Compressing objects:  92% (109/118)        
2021-02-08T14:05:12.2485766Z remote: Compressing objects:  93% (110/118)        
2021-02-08T14:05:12.2486449Z remote: Compressing objects:  94% (111/118)        
2021-02-08T14:05:12.2487017Z remote: Compressing objects:  95% (113/118)        
2021-02-08T14:05:12.2487584Z remote: Compressing objects:  96% (114/118)        
2021-02-08T14:05:12.2488147Z remote: Compressing objects:  97% (115/118)        
2021-02-08T14:05:12.2488655Z remote: Compressing objects:  98% (116/118)        
2021-02-08T14:05:12.2489525Z remote: Compressing objects:  99% (117/118)        
2021-02-08T14:05:12.2490097Z remote: Compressing objects: 100% (118/118)        
2021-02-08T14:05:12.2490692Z remote: Compressing objects: 100% (118/118), done.        
2021-02-08T14:05:12.4915469Z Receiving objects:   0% (1/66842)
2021-02-08T14:05:12.5637809Z Receiving objects:   1% (669/66842)
2021-02-08T14:05:12.6143102Z Receiving objects:   2% (1337/66842)
2021-02-08T14:05:12.6225174Z Receiving objects:   3% (2006/66842)
2021-02-08T14:05:12.6302293Z Receiving objects:   4% (2674/66842)
2021-02-08T14:05:12.6544678Z Receiving objects:   5% (3343/66842)
2021-02-08T14:05:12.6972963Z Receiving objects:   6% (4011/66842)
2021-02-08T14:05:12.7064673Z Receiving objects:   7% (4679/66842)
2021-02-08T14:05:12.7128871Z Receiving objects:   8% (5348/66842)
2021-02-08T14:05:12.7199928Z Receiving objects:   9% (6016/66842)
2021-02-08T14:05:12.7278247Z Receiving objects:  10% (6685/66842)
2021-02-08T14:05:12.7378043Z Receiving objects:  11% (7353/66842)
2021-02-08T14:05:12.7420999Z Receiving objects:  12% (8022/66842)
2021-02-08T14:05:12.7777274Z Receiving objects:  13% (8690/66842)
2021-02-08T14:05:12.7888442Z Receiving objects:  14% (9358/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:12.7960384Z Receiving objects:  15% (10027/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:12.8965035Z Receiving objects:  16% (10695/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:12.9430363Z Receiving objects:  17% (11364/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:12.9614270Z Receiving objects:  18% (12032/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:12.9639268Z Receiving objects:  19% (12700/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:12.9737403Z Receiving objects:  20% (13369/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:12.9750156Z Receiving objects:  21% (14037/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:12.9790926Z Receiving objects:  22% (14706/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:12.9808582Z Receiving objects:  23% (15374/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0152715Z Receiving objects:  24% (16043/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0154427Z Receiving objects:  25% (16711/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0169401Z Receiving objects:  26% (17379/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0182234Z Receiving objects:  27% (18048/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0224554Z Receiving objects:  28% (18716/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0231997Z Receiving objects:  29% (19385/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0342885Z Receiving objects:  30% (20053/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0343783Z Receiving objects:  31% (20722/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0344740Z Receiving objects:  32% (21390/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0345196Z Receiving objects:  33% (22058/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0345727Z Receiving objects:  34% (22727/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0346164Z Receiving objects:  35% (23395/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0479578Z Receiving objects:  36% (24064/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0499936Z Receiving objects:  37% (24732/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0509592Z Receiving objects:  38% (25400/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0534866Z Receiving objects:  39% (26069/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0548232Z Receiving objects:  40% (26737/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.0565016Z Receiving objects:  41% (27406/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.1073096Z Receiving objects:  42% (28074/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.1077700Z Receiving objects:  43% (28743/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.1080768Z Receiving objects:  44% (29411/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.1083736Z Receiving objects:  45% (30079/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.1084730Z Receiving objects:  46% (30748/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.1290268Z Receiving objects:  47% (31416/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.1342389Z Receiving objects:  48% (32085/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.1371302Z Receiving objects:  49% (32753/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.1832872Z Receiving objects:  50% (33421/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.1891975Z Receiving objects:  51% (34090/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2100463Z Receiving objects:  52% (34758/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2126893Z Receiving objects:  53% (35427/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2155691Z Receiving objects:  54% (36095/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2166156Z Receiving objects:  55% (36764/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2785746Z Receiving objects:  56% (37432/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2787266Z Receiving objects:  57% (38100/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2788158Z Receiving objects:  58% (38769/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2788983Z Receiving objects:  59% (39437/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2789740Z Receiving objects:  60% (40106/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2790493Z Receiving objects:  61% (40774/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2791232Z Receiving objects:  62% (41443/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2791963Z Receiving objects:  63% (42111/66842), 2.32 MiB | 4.52 MiB/s
2021-02-08T14:05:13.2792705Z Receiving objects:  64% (42779/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.2793450Z Receiving objects:  65% (43448/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.2996153Z Receiving objects:  66% (44116/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.2997241Z Receiving objects:  66% (44383/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.2998144Z Receiving objects:  67% (44785/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.2999100Z Receiving objects:  68% (45453/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3000044Z Receiving objects:  69% (46121/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3000804Z Receiving objects:  70% (46790/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3001639Z Receiving objects:  71% (47458/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3332386Z Receiving objects:  72% (48127/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3363795Z Receiving objects:  73% (48795/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3406876Z Receiving objects:  74% (49464/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3420904Z Receiving objects:  75% (50132/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3441973Z Receiving objects:  76% (50800/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3465798Z Receiving objects:  77% (51469/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3481770Z Receiving objects:  78% (52137/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3534269Z Receiving objects:  79% (52806/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3588984Z Receiving objects:  80% (53474/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3612297Z Receiving objects:  81% (54143/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3628497Z Receiving objects:  82% (54811/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3655734Z Receiving objects:  83% (55479/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3692227Z Receiving objects:  84% (56148/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.3725268Z Receiving objects:  85% (56816/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.4299871Z Receiving objects:  86% (57485/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.4330954Z Receiving objects:  87% (58153/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.4384623Z Receiving objects:  88% (58821/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.4495225Z Receiving objects:  89% (59490/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.4528219Z Receiving objects:  90% (60158/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.4563383Z Receiving objects:  91% (60827/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.4591512Z Receiving objects:  92% (61495/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.4620992Z Receiving objects:  93% (62164/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.5058652Z Receiving objects:  94% (62832/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.5129030Z Receiving objects:  95% (63500/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.5195950Z Receiving objects:  96% (64169/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.5259380Z Receiving objects:  97% (64837/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.5285282Z Receiving objects:  98% (65506/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.5323279Z Receiving objects:  99% (66174/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.5324084Z remote: Total 66842 (delta 89), reused 105 (delta 54), pack-reused 66657        
2021-02-08T14:05:13.5327993Z Receiving objects: 100% (66842/66842), 11.01 MiB | 10.88 MiB/s
2021-02-08T14:05:13.5329048Z Receiving objects: 100% (66842/66842), 16.57 MiB | 13.02 MiB/s, done.
2021-02-08T14:05:13.7274340Z Resolving deltas:   0% (0/48153)
2021-02-08T14:05:13.7275496Z Resolving deltas:   1% (490/48153)
2021-02-08T14:05:13.8257898Z Resolving deltas:   2% (964/48153)
2021-02-08T14:05:13.9225332Z Resolving deltas:   3% (1445/48153)
2021-02-08T14:05:14.1115861Z Resolving deltas:   4% (1940/48153)
2021-02-08T14:05:14.1185845Z Resolving deltas:   5% (2450/48153)
2021-02-08T14:05:14.3016622Z Resolving deltas:   6% (2892/48153)
2021-02-08T14:05:14.3085643Z Resolving deltas:   7% (3383/48153)
2021-02-08T14:05:14.3612190Z Resolving deltas:   8% (3855/48153)
2021-02-08T14:05:14.3615369Z Resolving deltas:   9% (4344/48153)
2021-02-08T14:05:14.3618861Z Resolving deltas:  10% (4836/48153)
2021-02-08T14:05:14.3619642Z Resolving deltas:  11% (5318/48153)
2021-02-08T14:05:14.3620382Z Resolving deltas:  12% (5824/48153)
2021-02-08T14:05:14.3621081Z Resolving deltas:  13% (6345/48153)
2021-02-08T14:05:14.3621776Z Resolving deltas:  14% (6884/48153)
2021-02-08T14:05:14.3622807Z Resolving deltas:  15% (7232/48153)
2021-02-08T14:05:14.3623498Z Resolving deltas:  16% (7734/48153)
2021-02-08T14:05:14.3624354Z Resolving deltas:  17% (8212/48153)
2021-02-08T14:05:14.3625228Z Resolving deltas:  18% (8713/48153)
2021-02-08T14:05:14.3625905Z Resolving deltas:  19% (9233/48153)
2021-02-08T14:05:14.3626604Z Resolving deltas:  20% (9642/48153)
2021-02-08T14:05:14.3627330Z Resolving deltas:  21% (10170/48153)
2021-02-08T14:05:14.3628003Z Resolving deltas:  22% (10624/48153)
2021-02-08T14:05:14.3628694Z Resolving deltas:  23% (11082/48153)
2021-02-08T14:05:14.3629423Z Resolving deltas:  24% (11742/48153)
2021-02-08T14:05:14.3630113Z Resolving deltas:  25% (12046/48153)
2021-02-08T14:05:14.3630785Z Resolving deltas:  26% (12521/48153)
2021-02-08T14:05:14.3631494Z Resolving deltas:  27% (13004/48153)
2021-02-08T14:05:14.3634744Z Resolving deltas:  28% (13490/48153)
2021-02-08T14:05:14.3635559Z Resolving deltas:  29% (14055/48153)
2021-02-08T14:05:14.3636329Z Resolving deltas:  30% (14757/48153)
2021-02-08T14:05:14.3636993Z Resolving deltas:  31% (14935/48153)
2021-02-08T14:05:14.3637802Z Resolving deltas:  32% (15462/48153)
2021-02-08T14:05:14.3645616Z Resolving deltas:  33% (15985/48153)
2021-02-08T14:05:14.3646493Z Resolving deltas:  34% (16590/48153)
2021-02-08T14:05:14.3647165Z Resolving deltas:  35% (16918/48153)
2021-02-08T14:05:14.3668277Z Resolving deltas:  36% (17399/48153)
2021-02-08T14:05:14.3669611Z Resolving deltas:  37% (17980/48153)
2021-02-08T14:05:14.3670298Z Resolving deltas:  38% (18442/48153)
2021-02-08T14:05:14.3670983Z Resolving deltas:  39% (18787/48153)
2021-02-08T14:05:14.3671624Z Resolving deltas:  40% (19290/48153)
2021-02-08T14:05:14.3672241Z Resolving deltas:  41% (19832/48153)
2021-02-08T14:05:14.3672877Z Resolving deltas:  42% (20358/48153)
2021-02-08T14:05:14.3673511Z Resolving deltas:  43% (20741/48153)
2021-02-08T14:05:14.3674125Z Resolving deltas:  44% (21200/48153)
2021-02-08T14:05:14.3674846Z Resolving deltas:  45% (21674/48153)
2021-02-08T14:05:14.3675492Z Resolving deltas:  46% (22620/48153)
2021-02-08T14:05:14.3676122Z Resolving deltas:  47% (22727/48153)
2021-02-08T14:05:14.3676814Z Resolving deltas:  48% (23243/48153)
2021-02-08T14:05:14.3677450Z Resolving deltas:  49% (23600/48153)
2021-02-08T14:05:14.3678082Z Resolving deltas:  50% (24245/48153)
2021-02-08T14:05:14.3678698Z Resolving deltas:  51% (24970/48153)
2021-02-08T14:05:14.3679723Z Resolving deltas:  52% (25041/48153)
2021-02-08T14:05:14.3680443Z Resolving deltas:  53% (25526/48153)
2021-02-08T14:05:14.3681369Z Resolving deltas:  54% (26098/48153)
2021-02-08T14:05:14.3682276Z Resolving deltas:  55% (26672/48153)
2021-02-08T14:05:14.3683195Z Resolving deltas:  56% (27129/48153)
2021-02-08T14:05:14.3683977Z Resolving deltas:  57% (27475/48153)
2021-02-08T14:05:14.3684814Z Resolving deltas:  58% (27957/48153)
2021-02-08T14:05:14.3685600Z Resolving deltas:  59% (28411/48153)
2021-02-08T14:05:14.3686387Z Resolving deltas:  60% (29257/48153)
2021-02-08T14:05:14.3687150Z Resolving deltas:  61% (29452/48153)
2021-02-08T14:05:14.3687931Z Resolving deltas:  62% (30191/48153)
2021-02-08T14:05:14.3688724Z Resolving deltas:  63% (30339/48153)
2021-02-08T14:05:14.3689488Z Resolving deltas:  64% (31085/48153)
2021-02-08T14:05:14.3690300Z Resolving deltas:  65% (31356/48153)
2021-02-08T14:05:14.3691085Z Resolving deltas:  66% (31783/48153)
2021-02-08T14:05:14.3691855Z Resolving deltas:  67% (32427/48153)
2021-02-08T14:05:14.3692632Z Resolving deltas:  68% (32799/48153)
2021-02-08T14:05:14.3693411Z Resolving deltas:  69% (33568/48153)
2021-02-08T14:05:14.3694231Z Resolving deltas:  70% (33721/48153)
2021-02-08T14:05:14.3695027Z Resolving deltas:  71% (34269/48153)
2021-02-08T14:05:14.3695773Z Resolving deltas:  72% (34818/48153)
2021-02-08T14:05:14.3696490Z Resolving deltas:  73% (35249/48153)
2021-02-08T14:05:14.3697190Z Resolving deltas:  74% (35652/48153)
2021-02-08T14:05:14.3697913Z Resolving deltas:  75% (36230/48153)
2021-02-08T14:05:14.3698628Z Resolving deltas:  76% (36689/48153)
2021-02-08T14:05:14.3699397Z Resolving deltas:  77% (37081/48153)
2021-02-08T14:05:14.3700276Z Resolving deltas:  78% (37595/48153)
2021-02-08T14:05:14.3701173Z Resolving deltas:  79% (38052/48153)
2021-02-08T14:05:14.3702017Z Resolving deltas:  80% (38602/48153)
2021-02-08T14:05:14.3702934Z Resolving deltas:  82% (39735/48153)
2021-02-08T14:05:14.3703709Z Resolving deltas:  83% (39984/48153)
2021-02-08T14:05:14.3704553Z Resolving deltas:  84% (40463/48153)
2021-02-08T14:05:14.3705330Z Resolving deltas:  85% (41326/48153)
2021-02-08T14:05:14.3706097Z Resolving deltas:  86% (41541/48153)
2021-02-08T14:05:14.3706862Z Resolving deltas:  87% (42000/48153)
2021-02-08T14:05:14.3707622Z Resolving deltas:  88% (42376/48153)
2021-02-08T14:05:14.3708394Z Resolving deltas:  89% (43038/48153)
2021-02-08T14:05:14.3709163Z Resolving deltas:  90% (43344/48153)
2021-02-08T14:05:14.3709941Z Resolving deltas:  91% (43840/48153)
2021-02-08T14:05:14.3710692Z Resolving deltas:  92% (44390/48153)
2021-02-08T14:05:14.3711461Z Resolving deltas:  93% (44839/48153)
2021-02-08T14:05:14.3712242Z Resolving deltas:  94% (45267/48153)
2021-02-08T14:05:14.3712996Z Resolving deltas:  95% (45763/48153)
2021-02-08T14:05:14.3713767Z Resolving deltas:  96% (46565/48153)
2021-02-08T14:05:14.3714809Z Resolving deltas:  97% (46735/48153)
2021-02-08T14:05:14.3715686Z Resolving deltas:  98% (47191/48153)
2021-02-08T14:05:14.3716475Z Resolving deltas:  99% (47693/48153)
2021-02-08T14:05:14.3717248Z Resolving deltas: 100% (48153/48153)
2021-02-08T14:05:14.3718053Z Resolving deltas: 100% (48153/48153), done.
2021-02-08T14:05:15.3959289Z From https://github.com/scipp/scipp
2021-02-08T14:05:15.3960971Z  * [new branch]      1356_Try_gold_linker    -> origin/1356_Try_gold_linker
2021-02-08T14:05:15.3962965Z  * [new branch]      Add_tiled_plotting      -> origin/Add_tiled_plotting
2021-02-08T14:05:15.3964253Z  * [new branch]      Refactoring_4           -> origin/Refactoring_4
2021-02-08T14:05:15.3965517Z  * [new branch]      add_copybuttons_in_docs -> origin/add_copybuttons_in_docs
2021-02-08T14:05:15.3979161Z  * [new branch]      appveyor                -> origin/appveyor
2021-02-08T14:05:15.3980497Z  * [new branch]      appveyor_features_on_pr_only -> origin/appveyor_features_on_pr_only
2021-02-08T14:05:15.3983480Z  * [new branch]      astype-numpy-dtype      -> origin/astype-numpy-dtype
2021-02-08T14:05:15.3987186Z  * [new branch]      azure_worker_test       -> origin/azure_worker_test
2021-02-08T14:05:15.3988491Z  * [new branch]      baseurl_in_docs         -> origin/baseurl_in_docs
2021-02-08T14:05:15.3989743Z  * [new branch]      binary-generators       -> origin/binary-generators
2021-02-08T14:05:15.3991010Z  * [new branch]      bucket-experiments      -> origin/bucket-experiments
2021-02-08T14:05:15.3992253Z  * [new branch]      buckets                 -> origin/buckets
2021-02-08T14:05:15.3993455Z  * [new branch]      build-bench             -> origin/build-bench
2021-02-08T14:05:15.3994511Z  * [new branch]      coords-bindings         -> origin/coords-bindings
2021-02-08T14:05:15.3995340Z  * [new branch]      correct_handling_np_strides2 -> origin/correct_handling_np_strides2
2021-02-08T14:05:15.3996384Z  * [new branch]      dask                    -> origin/dask
2021-02-08T14:05:15.3996944Z  * [new branch]      datetime_bindings       -> origin/datetime_bindings
2021-02-08T14:05:15.3997740Z  * [new branch]      devide_operate_units_fix -> origin/devide_operate_units_fix
2021-02-08T14:05:15.3998219Z  * [new branch]      dict_representation     -> origin/dict_representation
2021-02-08T14:05:15.3998699Z  * [new branch]      dtasev-table_html_testing -> origin/dtasev-table_html_testing
2021-02-08T14:05:15.3999213Z  * [new branch]      energy_conversion_fixes -> origin/energy_conversion_fixes
2021-02-08T14:05:15.3999708Z  * [new branch]      event-sample-log-filter2 -> origin/event-sample-log-filter2
2021-02-08T14:05:15.4000180Z  * [new branch]      fix-1479                -> origin/fix-1479
2021-02-08T14:05:15.4000639Z  * [new branch]      fix-version-string      -> origin/fix-version-string
2021-02-08T14:05:15.4001584Z  * [new branch]      fix_install_target      -> origin/fix_install_target
2021-02-08T14:05:15.4002083Z  * [new branch]      floor-division          -> origin/floor-division
2021-02-08T14:05:15.4002580Z  * [new branch]      instrument-view-with-single-pixel -> origin/instrument-view-with-single-pixel
2021-02-08T14:05:15.4003112Z  * [new branch]      instrument_view_profiles -> origin/instrument_view_profiles
2021-02-08T14:05:15.4003589Z  * [new branch]      is_approx               -> origin/is_approx
2021-02-08T14:05:15.4004080Z  * [new branch]      keyword_constructor_refactored -> origin/keyword_constructor_refactored
2021-02-08T14:05:15.4004551Z  * [new branch]      llnl-units              -> origin/llnl-units
2021-02-08T14:05:15.4005013Z  * [new branch]      load-geometry-as-data   -> origin/load-geometry-as-data
2021-02-08T14:05:15.4005488Z  * [new branch]      load_nexus              -> origin/load_nexus
2021-02-08T14:05:15.4006013Z  * [new branch]      load_nexus_mdj          -> origin/load_nexus_mdj
2021-02-08T14:05:15.4006475Z  * [new branch]      loki-reduction          -> origin/loki-reduction
2021-02-08T14:05:15.4006936Z  * [new branch]      loki_q_resolution       -> origin/loki_q_resolution
2021-02-08T14:05:15.4007403Z  * [new branch]      mantid-conversion-docs  -> origin/mantid-conversion-docs
2021-02-08T14:05:15.4008046Z  * [new branch]      master                  -> origin/master
2021-02-08T14:05:15.4008530Z  * [new branch]      metadata                -> origin/metadata
2021-02-08T14:05:15.4009014Z  * [new branch]      mixed_precision         -> origin/mixed_precision
2021-02-08T14:05:15.4009483Z  * [new branch]      nan-sum                 -> origin/nan-sum
2021-02-08T14:05:15.4009997Z  * [new branch]      non-dim-coord-concept-change -> origin/non-dim-coord-concept-change
2021-02-08T14:05:15.4010533Z  * [new branch]      optimize_sliceviewer    -> origin/optimize_sliceviewer
2021-02-08T14:05:15.4011030Z  * [new branch]      python-none             -> origin/python-none
2021-02-08T14:05:15.4011517Z  * [new branch]      python-shape            -> origin/python-shape
2021-02-08T14:05:15.4012028Z  * [new branch]      python_bindings_order   -> origin/python_bindings_order
2021-02-08T14:05:15.4012746Z  * [new branch]      q1d                     -> origin/q1d
2021-02-08T14:05:15.4013394Z  * [new branch]      refactoring_2           -> origin/refactoring_2
2021-02-08T14:05:15.4014079Z  * [new branch]      refactoring_4           -> origin/refactoring_4
2021-02-08T14:05:15.4014577Z  * [new branch]      refactoring_5           -> origin/refactoring_5
2021-02-08T14:05:15.4015060Z  * [new branch]      repr-bin-edge           -> origin/repr-bin-edge
2021-02-08T14:05:15.4015547Z  * [new branch]      rtd_redirect            -> origin/rtd_redirect
2021-02-08T14:05:15.4016120Z  * [new branch]      sanitizer_set_up        -> origin/sanitizer_set_up
2021-02-08T14:05:15.4017052Z  * [new branch]      scipp-as-trigger        -> origin/scipp-as-trigger
2021-02-08T14:05:15.4018110Z  * [new branch]      scipp_neutron           -> origin/scipp_neutron
2021-02-08T14:05:15.5912486Z  * [new branch]      sort2                   -> origin/sort2
2021-02-08T14:05:15.5913139Z  * [new branch]      strides_3               -> origin/strides_3
2021-02-08T14:05:15.5913702Z  * [new branch]      tag-group               -> origin/tag-group
2021-02-08T14:05:15.5914866Z  * [new branch]      test_travis             -> origin/test_travis
2021-02-08T14:05:15.5916044Z  * [new branch]      testing                 -> origin/testing
2021-02-08T14:05:15.5917091Z  * [new branch]      tests_NO_LTO_issues_clang -> origin/tests_NO_LTO_issues_clang
2021-02-08T14:05:15.5918096Z  * [new branch]      time-point              -> origin/time-point
2021-02-08T14:05:15.5919207Z  * [new branch]      travis-stages           -> origin/travis-stages
2021-02-08T14:05:15.5920215Z  * [new branch]      unit-conversion-refactor -> origin/unit-conversion-refactor
2021-02-08T14:05:15.5921589Z  * [new branch]      vector_pool             -> origin/vector_pool
2021-02-08T14:05:15.5922484Z  * [new branch]      views                   -> origin/views
2021-02-08T14:05:15.5923504Z  * [new branch]      visit_sandbox           -> origin/visit_sandbox
2021-02-08T14:05:15.5924392Z  * [new branch]      window_diagnose         -> origin/window_diagnose
2021-02-08T14:05:15.5925187Z  * [new branch]      windows-compile-times   -> origin/windows-compile-times
2021-02-08T14:05:15.5925976Z  * [new branch]      xtensor                 -> origin/xtensor
2021-02-08T14:05:15.5926689Z  * [new ref]         refs/pull/1663/merge    -> pull/1663/merge
2021-02-08T14:05:15.5927365Z  * [new tag]         0.1                     -> 0.1
2021-02-08T14:05:15.5928048Z  * [new tag]         0.2                     -> 0.2
2021-02-08T14:05:15.5928692Z  * [new tag]         0.3.0                   -> 0.3.0
2021-02-08T14:05:15.5929433Z  * [new tag]         0.3.1                   -> 0.3.1
2021-02-08T14:05:15.5930108Z  * [new tag]         0.4.0                   -> 0.4.0
2021-02-08T14:05:15.5930997Z  * [new tag]         0.5.0                   -> 0.5.0
2021-02-08T14:05:15.5931648Z  * [new tag]         v0.0.1                  -> v0.0.1
2021-02-08T14:05:15.5932349Z  * [new tag]         v0.0.2                  -> v0.0.2
2021-02-08T14:05:15.5932882Z  * [new tag]         v0.1                    -> v0.1
2021-02-08T14:05:15.6695556Z ##[command]git -c http.extraheader="AUTHORIZATION: basic ***" fetch --force --tags --prune --progress --no-recurse-submodules origin +621be2ee62e7926df599c2f4d7ee34e338690722:refs/remotes/origin/621be2ee62e7926df599c2f4d7ee34e338690722
2021-02-08T14:05:16.3348554Z From https://github.com/scipp/scipp
2021-02-08T14:05:16.3349150Z  * [new ref]             621be2ee62e7926df599c2f4d7ee34e338690722 -> origin/621be2ee62e7926df599c2f4d7ee34e338690722
2021-02-08T14:05:16.4189245Z ##[command]git checkout --progress --force refs/remotes/pull/1663/merge
2021-02-08T14:05:16.7104802Z Note: switching to 'refs/remotes/pull/1663/merge'.
2021-02-08T14:05:16.7106711Z 
2021-02-08T14:05:16.7109815Z You are in 'detached HEAD' state. You can look around, make experimental
2021-02-08T14:05:16.7111202Z changes and commit them, and you can discard any commits you make in this
2021-02-08T14:05:16.7112731Z state without impacting any branches by switching back to a branch.
2021-02-08T14:05:16.7113587Z 
2021-02-08T14:05:16.7114800Z If you want to create a new branch to retain commits you create, you may
2021-02-08T14:05:16.7116115Z do so (now or later) by using -c with the switch command. Example:
2021-02-08T14:05:16.7117159Z 
2021-02-08T14:05:16.7118168Z   git switch -c <new-branch-name>
2021-02-08T14:05:16.7119053Z 
2021-02-08T14:05:16.7120080Z Or undo this operation with:
2021-02-08T14:05:16.7120836Z 
2021-02-08T14:05:16.7121777Z   git switch -
2021-02-08T14:05:16.7122486Z 
2021-02-08T14:05:16.7123587Z Turn off this advice by setting config variable advice.detachedHead to false
2021-02-08T14:05:16.7124445Z 
2021-02-08T14:05:16.7125566Z HEAD is now at 621be2ee6 Merge c617913e0770b0f18e35aeb075d22a4577f0473c into 8368b30e5a4aaac0e2f92e1a64171e72e94b5962
2021-02-08T14:05:16.7195076Z ##[command]git submodule sync
2021-02-08T14:05:19.4459225Z ##[command]git -c http.https://github.com.extraheader="AUTHORIZATION: basic ***" submodule update --init --force
2021-02-08T14:05:20.1285860Z Submodule 'CMake/sanitizers-cmake' (git://github.com/arsenm/sanitizers-cmake.git) registered for path 'CMake/sanitizers-cmake'
2021-02-08T14:05:20.7377522Z Cloning into 'D:/a/1/s/CMake/sanitizers-cmake'...
2021-02-08T14:05:21.1897584Z Submodule path 'CMake/sanitizers-cmake': checked out '99e159ec9bc8dd362b08d18436bd40ff0648417b'
2021-02-08T14:05:21.2106560Z ##[section]Finishing: Checkout scipp/scipp@refs/pull/1663/merge to s
2021-02-08T14:05:21.2144999Z ##[section]Starting: Add Conda to PATH
2021-02-08T14:05:21.2264277Z ==============================================================================
2021-02-08T14:05:21.2264553Z Task         : PowerShell
2021-02-08T14:05:21.2264817Z Description  : Run a PowerShell script on Linux, macOS, or Windows
2021-02-08T14:05:21.2265051Z Version      : 2.180.1
2021-02-08T14:05:21.2265270Z Author       : Microsoft Corporation
2021-02-08T14:05:21.2265569Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2021-02-08T14:05:21.2266063Z ==============================================================================
2021-02-08T14:05:22.9676203Z Generating script.
2021-02-08T14:05:23.2821355Z ========================== Starting Command Output ===========================
2021-02-08T14:05:23.3285770Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\7abc3f50-0cbf-4f70-bf0b-da767e73abb0.ps1'"
2021-02-08T14:05:23.6388235Z ##[section]Finishing: Add Conda to PATH
2021-02-08T14:05:23.6542460Z ##[section]Starting: Configure build environment
2021-02-08T14:05:23.6650915Z ==============================================================================
2021-02-08T14:05:23.6651238Z Task         : Bash
2021-02-08T14:05:23.6651505Z Description  : Run a Bash script on macOS, Linux, or Windows
2021-02-08T14:05:23.6651958Z Version      : 3.179.0
2021-02-08T14:05:23.6652223Z Author       : Microsoft Corporation
2021-02-08T14:05:23.6652595Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/bash
2021-02-08T14:05:23.6653001Z ==============================================================================
2021-02-08T14:05:24.9112226Z Generating script.
2021-02-08T14:05:25.0184266Z [command]"C:\Program Files\Git\bin\bash.exe" --noprofile --norc -c pwd
2021-02-08T14:05:27.2108781Z /d/a/_temp
2021-02-08T14:05:27.2184512Z ========================== Starting Command Output ===========================
2021-02-08T14:05:27.2192661Z [command]"C:\Program Files\Git\bin\bash.exe" --noprofile --norc /d/a/_temp/b926d1a5-f126-4c89-84af-08934743a65c.sh
2021-02-08T14:05:27.2734583Z + conda --version
2021-02-08T14:05:42.6065149Z conda 4.9.2
2021-02-08T14:05:42.6603996Z + conda env create -f scipp-developer-no-mantid.yml
2021-02-08T14:06:29.1743717Z Collecting package metadata (repodata.json): ...working... done
2021-02-08T14:07:04.0756703Z Solving environment: ...working... done
2021-02-08T14:07:05.6951142Z 
2021-02-08T14:07:05.6952132Z Downloading and Extracting Packages
2021-02-08T14:07:05.6952524Z 
2021-02-08T14:07:05.8331687Z pyqt5-sip-4.19.18    | 298 KB    |            |   0% 
2021-02-08T14:07:06.2626862Z pyqt5-sip-4.19.18    | 298 KB    | 5          |   5% 
2021-02-08T14:07:06.2630769Z pyqt5-sip-4.19.18    | 298 KB    | ########## | 100% 
2021-02-08T14:07:06.2631900Z pyqt5-sip-4.19.18    | 298 KB    | ########## | 100% 
2021-02-08T14:07:06.2632609Z 
2021-02-08T14:07:06.3766364Z pandocfilters-1.4.2  | 9 KB      |            |   0% 
2021-02-08T14:07:06.3774972Z pandocfilters-1.4.2  | 9 KB      | ########## | 100% 
2021-02-08T14:07:06.3775684Z pandocfilters-1.4.2  | 9 KB      | ########## | 100% 
2021-02-08T14:07:06.3776004Z 
2021-02-08T14:07:06.7086696Z tornado-6.1          | 648 KB    |            |   0% 
2021-02-08T14:07:06.7090888Z tornado-6.1          | 648 KB    | ########## | 100% 
2021-02-08T14:07:06.7093458Z tornado-6.1          | 648 KB    | ########## | 100% 
2021-02-08T14:07:06.7094036Z 
2021-02-08T14:07:06.7863958Z python-configuration | 20 KB     |            |   0% 
2021-02-08T14:07:06.7865954Z python-configuration | 20 KB     | ########## | 100% 
2021-02-08T14:07:06.7866374Z 
2021-02-08T14:07:06.9040694Z bleach-3.3.0         | 111 KB    |            |   0% 
2021-02-08T14:07:06.9042300Z bleach-3.3.0         | 111 KB    | ########## | 100% 
2021-02-08T14:07:06.9043869Z bleach-3.3.0         | 111 KB    | ########## | 100% 
2021-02-08T14:07:06.9044133Z 
2021-02-08T14:07:07.0660476Z traitlets-4.3.3      | 133 KB    |            |   0% 
2021-02-08T14:07:07.0662710Z traitlets-4.3.3      | 133 KB    | ########## | 100% 
2021-02-08T14:07:07.0664656Z traitlets-4.3.3      | 133 KB    | ########## | 100% 
2021-02-08T14:07:07.0665139Z 
2021-02-08T14:07:07.1894867Z libcurl-7.71.1       | 278 KB    |            |   0% 
2021-02-08T14:07:07.1896302Z libcurl-7.71.1       | 278 KB    | ########## | 100% 
2021-02-08T14:07:07.1897855Z libcurl-7.71.1       | 278 KB    | ########## | 100% 
2021-02-08T14:07:07.1898163Z 
2021-02-08T14:07:07.2358322Z importlib_metadata-3 | 3 KB      |            |   0% 
2021-02-08T14:07:07.2358918Z importlib_metadata-3 | 3 KB      | ########## | 100% 
2021-02-08T14:07:07.2359302Z 
2021-02-08T14:07:07.2973520Z nest-asyncio-1.4.3   | 9 KB      |            |   0% 
2021-02-08T14:07:07.2974449Z nest-asyncio-1.4.3   | 9 KB      | ########## | 100% 
2021-02-08T14:07:07.2974791Z 
2021-02-08T14:07:07.5038715Z libssh2-1.9.0        | 218 KB    |            |   0% 
2021-02-08T14:07:07.5042566Z libssh2-1.9.0        | 218 KB    | ########## | 100% 
2021-02-08T14:07:07.5051823Z libssh2-1.9.0        | 218 KB    | ########## | 100% 
2021-02-08T14:07:07.5052148Z 
2021-02-08T14:07:07.7598580Z yaml-0.2.5           | 61 KB     |            |   0% 
2021-02-08T14:07:07.7600508Z yaml-0.2.5           | 61 KB     | ########## | 100% 
2021-02-08T14:07:07.7603129Z yaml-0.2.5           | 61 KB     | ########## | 100% 
2021-02-08T14:07:07.7603477Z 
2021-02-08T14:07:07.8656200Z prompt_toolkit-3.0.1 | 4 KB      |            |   0% 
2021-02-08T14:07:07.8657930Z prompt_toolkit-3.0.1 | 4 KB      | ########## | 100% 
2021-02-08T14:07:07.8658940Z prompt_toolkit-3.0.1 | 4 KB      | ########## | 100% 
2021-02-08T14:07:07.8659406Z 
2021-02-08T14:07:08.0699930Z sphinxcontrib-serial | 24 KB     |            |   0% 
2021-02-08T14:07:08.0702693Z sphinxcontrib-serial | 24 KB     | ########## | 100% 
2021-02-08T14:07:08.0705037Z sphinxcontrib-serial | 24 KB     | ########## | 100% 
2021-02-08T14:07:08.0705415Z 
2021-02-08T14:07:08.1729551Z libclang-11.0.1      | 20.8 MB   |            |   0% 
2021-02-08T14:07:08.2723948Z libclang-11.0.1      | 20.8 MB   | ###7       |  37% 
2021-02-08T14:07:08.3729237Z libclang-11.0.1      | 20.8 MB   | #######4   |  74% 
2021-02-08T14:07:11.4518187Z libclang-11.0.1      | 20.8 MB   | #########3 |  93% 
2021-02-08T14:07:11.4519088Z libclang-11.0.1      | 20.8 MB   | ########## | 100% 
2021-02-08T14:07:11.4519483Z 
2021-02-08T14:07:11.5997687Z pyqtchart-5.12       | 207 KB    |            |   0% 
2021-02-08T14:07:11.5999527Z pyqtchart-5.12       | 207 KB    | ########## | 100% 
2021-02-08T14:07:11.6001721Z pyqtchart-5.12       | 207 KB    | ########## | 100% 
2021-02-08T14:07:11.6002139Z 
2021-02-08T14:07:11.9783263Z sphinx_rtd_theme-0.5 | 2.7 MB    |            |   0% 
2021-02-08T14:07:11.9785479Z sphinx_rtd_theme-0.5 | 2.7 MB    | ########## | 100% 
2021-02-08T14:07:11.9787330Z sphinx_rtd_theme-0.5 | 2.7 MB    | ########## | 100% 
2021-02-08T14:07:11.9787610Z 
2021-02-08T14:07:12.0782773Z python-3.7.9         | 17.9 MB   |            |   0% 
2021-02-08T14:07:12.1905096Z python-3.7.9         | 17.9 MB   | #####2     |  52% 
2021-02-08T14:07:12.2902522Z python-3.7.9         | 17.9 MB   | #######6   |  76% 
2021-02-08T14:07:25.9871529Z python-3.7.9         | 17.9 MB   | #########6 |  96% 
2021-02-08T14:07:25.9872492Z python-3.7.9         | 17.9 MB   | ########## | 100% 
2021-02-08T14:07:25.9872855Z 
2021-02-08T14:07:26.2293319Z ipywidgets-7.6.3     | 101 KB    |            |   0% 
2021-02-08T14:07:26.4584092Z ipywidgets-7.6.3     | 101 KB    | #5         |  16% 
2021-02-08T14:07:26.4587204Z ipywidgets-7.6.3     | 101 KB    | ########## | 100% 
2021-02-08T14:07:26.4589350Z ipywidgets-7.6.3     | 101 KB    | ########## | 100% 
2021-02-08T14:07:26.4589776Z 
2021-02-08T14:07:26.5196140Z vc-14.2              | 12 KB     |            |   0% 
2021-02-08T14:07:26.5197704Z vc-14.2              | 12 KB     | ########## | 100% 
2021-02-08T14:07:26.5198286Z 
2021-02-08T14:07:26.6250358Z pandoc-2.11.4        | 17.4 MB   |            |   0% 
2021-02-08T14:07:26.7259530Z pandoc-2.11.4        | 17.4 MB   | 6          |   6% 
2021-02-08T14:07:26.8763359Z pandoc-2.11.4        | 17.4 MB   | ##5        |  25% 
2021-02-08T14:07:31.2842845Z pandoc-2.11.4        | 17.4 MB   | #####4     |  54% 
2021-02-08T14:07:31.2845255Z pandoc-2.11.4        | 17.4 MB   | ########## | 100% 
2021-02-08T14:07:31.2847484Z pandoc-2.11.4        | 17.4 MB   | ########## | 100% 
2021-02-08T14:07:31.2847906Z 
2021-02-08T14:07:31.4306525Z jupyterlab_widgets-1 | 130 KB    |            |   0% 
2021-02-08T14:07:31.4308873Z jupyterlab_widgets-1 | 130 KB    | ########## | 100% 
2021-02-08T14:07:31.4310815Z jupyterlab_widgets-1 | 130 KB    | ########## | 100% 
2021-02-08T14:07:31.4311155Z 
2021-02-08T14:07:31.4895682Z toml-0.10.2          | 18 KB     |            |   0% 
2021-02-08T14:07:31.4896367Z toml-0.10.2          | 18 KB     | ########## | 100% 
2021-02-08T14:07:31.4896775Z 
2021-02-08T14:07:31.5996926Z pyrsistent-0.17.3    | 91 KB     |            |   0% 
2021-02-08T14:07:31.5997871Z pyrsistent-0.17.3    | 91 KB     | ########## | 100% 
2021-02-08T14:07:31.5998828Z pyrsistent-0.17.3    | 91 KB     | ########## | 100% 
2021-02-08T14:07:31.5999228Z 
2021-02-08T14:07:31.6570961Z atomicwrites-1.4.0   | 10 KB     |            |   0% 
2021-02-08T14:07:31.6571812Z atomicwrites-1.4.0   | 10 KB     | ########## | 100% 
2021-02-08T14:07:31.6572239Z 
2021-02-08T14:07:32.0954233Z m2w64-gmp-6.1.0      | 726 KB    |            |   0% 
2021-02-08T14:07:32.0955829Z m2w64-gmp-6.1.0      | 726 KB    | ########## | 100% 
2021-02-08T14:07:32.0956944Z m2w64-gmp-6.1.0      | 726 KB    | ########## | 100% 
2021-02-08T14:07:32.0957581Z 
2021-02-08T14:07:32.1640814Z six-1.15.0           | 14 KB     |            |   0% 
2021-02-08T14:07:32.1641439Z six-1.15.0           | 14 KB     | ########## | 100% 
2021-02-08T14:07:32.1641841Z 
2021-02-08T14:07:32.2852017Z brotlipy-0.7.0       | 368 KB    |            |   0% 
2021-02-08T14:07:32.2854430Z brotlipy-0.7.0       | 368 KB    | ########## | 100% 
2021-02-08T14:07:32.2856341Z brotlipy-0.7.0       | 368 KB    | ########## | 100% 
2021-02-08T14:07:32.2856707Z 
2021-02-08T14:07:32.3948518Z openssl-1.1.1i       | 5.8 MB    |            |   0% 
2021-02-08T14:07:33.5989775Z openssl-1.1.1i       | 5.8 MB    | ########1  |  81% 
2021-02-08T14:07:33.5992875Z openssl-1.1.1i       | 5.8 MB    | ########## | 100% 
2021-02-08T14:07:33.5993584Z 
2021-02-08T14:07:33.7211145Z pyyaml-5.4.1         | 156 KB    |            |   0% 
2021-02-08T14:07:33.7212686Z pyyaml-5.4.1         | 156 KB    | ########## | 100% 
2021-02-08T14:07:33.7214393Z pyyaml-5.4.1         | 156 KB    | ########## | 100% 
2021-02-08T14:07:33.7214761Z 
2021-02-08T14:07:33.8055417Z testpath-0.4.4       | 85 KB     |            |   0% 
2021-02-08T14:07:33.8055894Z testpath-0.4.4       | 85 KB     | ########## | 100% 
2021-02-08T14:07:33.8056263Z 
2021-02-08T14:07:37.6180740Z pyqt-impl-5.12.3     | 4.3 MB    |            |   0% 
2021-02-08T14:07:37.6183519Z pyqt-impl-5.12.3     | 4.3 MB    | ########## | 100% 
2021-02-08T14:07:37.6184735Z pyqt-impl-5.12.3     | 4.3 MB    | ########## | 100% 
2021-02-08T14:07:37.6185302Z 
2021-02-08T14:07:39.1734991Z setuptools-49.6.0    | 931 KB    |            |   0% 
2021-02-08T14:07:39.1737959Z setuptools-49.6.0    | 931 KB    | ########## | 100% 
2021-02-08T14:07:39.1739120Z setuptools-49.6.0    | 931 KB    | ########## | 100% 
2021-02-08T14:07:39.1739689Z 
2021-02-08T14:07:39.2979830Z async_generator-1.10 | 18 KB     |            |   0% 
2021-02-08T14:07:39.2981700Z async_generator-1.10 | 18 KB     | ########## | 100% 
2021-02-08T14:07:39.2983810Z async_generator-1.10 | 18 KB     | ########## | 100% 
2021-02-08T14:07:39.2984209Z 
2021-02-08T14:07:39.4475259Z importlib-metadata-3 | 21 KB     |            |   0% 
2021-02-08T14:07:39.4478292Z importlib-metadata-3 | 21 KB     | ########## | 100% 
2021-02-08T14:07:39.4479676Z importlib-metadata-3 | 21 KB     | ########## | 100% 
2021-02-08T14:07:39.4480277Z 
2021-02-08T14:07:39.5824281Z typing_extensions-3. | 25 KB     |            |   0% 
2021-02-08T14:07:39.5828418Z typing_extensions-3. | 25 KB     | ########## | 100% 
2021-02-08T14:07:39.5829736Z typing_extensions-3. | 25 KB     | ########## | 100% 
2021-02-08T14:07:39.5830305Z 
2021-02-08T14:07:43.0149499Z ipython-7.2.0        | 1.1 MB    |            |   0% 
2021-02-08T14:07:43.0152299Z ipython-7.2.0        | 1.1 MB    | ########## | 100% 
2021-02-08T14:07:43.0154572Z ipython-7.2.0        | 1.1 MB    | ########## | 100% 
2021-02-08T14:07:43.0154972Z 
2021-02-08T14:07:43.0914070Z requests-2.25.1      | 51 KB     |            |   0% 
2021-02-08T14:07:43.0915630Z requests-2.25.1      | 51 KB     | ########## | 100% 
2021-02-08T14:07:43.0916037Z 
2021-02-08T14:07:43.5321510Z widgetsnbextension-3 | 1.8 MB    |            |   0% 
2021-02-08T14:07:43.5323709Z widgetsnbextension-3 | 1.8 MB    | ########## | 100% 
2021-02-08T14:07:43.5325697Z widgetsnbextension-3 | 1.8 MB    | ########## | 100% 
2021-02-08T14:07:43.5325992Z 
2021-02-08T14:07:43.6328528Z hdf5-1.10.6          | 19.6 MB   |            |   0% 
2021-02-08T14:07:43.7328315Z hdf5-1.10.6          | 19.6 MB   | ##9        |  30% 
2021-02-08T14:07:48.7541868Z hdf5-1.10.6          | 19.6 MB   | #######7   |  78% 
2021-02-08T14:07:48.7546142Z hdf5-1.10.6          | 19.6 MB   | ########## | 100% 
2021-02-08T14:07:48.7547441Z hdf5-1.10.6          | 19.6 MB   | ########## | 100% 
2021-02-08T14:07:48.7548094Z 
2021-02-08T14:07:49.4200990Z intel-openmp-2020.3  | 2.0 MB    |            |   0% 
2021-02-08T14:07:49.4203013Z intel-openmp-2020.3  | 2.0 MB    | ########## | 100% 
2021-02-08T14:07:49.4204933Z intel-openmp-2020.3  | 2.0 MB    | ########## | 100% 
2021-02-08T14:07:49.4205341Z 
2021-02-08T14:07:49.6092893Z m2w64-gcc-libs-5.3.0 | 520 KB    |            |   0% 
2021-02-08T14:07:50.0502841Z m2w64-gcc-libs-5.3.0 | 520 KB    | 3          |   3% 
2021-02-08T14:07:50.0506864Z m2w64-gcc-libs-5.3.0 | 520 KB    | ########## | 100% 
2021-02-08T14:07:50.0508161Z m2w64-gcc-libs-5.3.0 | 520 KB    | ########## | 100% 
2021-02-08T14:07:50.0508704Z 
2021-02-08T14:07:50.2273453Z wheel-0.36.2         | 31 KB     |            |   0% 
2021-02-08T14:07:50.2274470Z wheel-0.36.2         | 31 KB     | ########## | 100% 
2021-02-08T14:07:50.2275616Z wheel-0.36.2         | 31 KB     | ########## | 100% 
2021-02-08T14:07:50.2276330Z 
2021-02-08T14:07:50.4631157Z pywinpty-0.5.7       | 50 KB     |            |   0% 
2021-02-08T14:07:50.4634445Z pywinpty-0.5.7       | 50 KB     | ########## | 100% 
2021-02-08T14:07:50.4637226Z pywinpty-0.5.7       | 50 KB     | ########## | 100% 
2021-02-08T14:07:50.4637982Z 
2021-02-08T14:07:50.6362766Z argon2-cffi-20.1.0   | 51 KB     |            |   0% 
2021-02-08T14:07:50.6363990Z argon2-cffi-20.1.0   | 51 KB     | ########## | 100% 
2021-02-08T14:07:50.6365337Z argon2-cffi-20.1.0   | 51 KB     | ########## | 100% 
2021-02-08T14:07:50.6365911Z 
2021-02-08T14:07:50.7763868Z cycler-0.10.0        | 9 KB      |            |   0% 
2021-02-08T14:07:50.7766160Z cycler-0.10.0        | 9 KB      | ########## | 100% 
2021-02-08T14:07:50.7767405Z cycler-0.10.0        | 9 KB      | ########## | 100% 
2021-02-08T14:07:50.7768050Z 
2021-02-08T14:07:51.4444620Z nbformat-5.1.2       | 66 KB     |            |   0% 
2021-02-08T14:07:51.4447475Z nbformat-5.1.2       | 66 KB     | ########## | 100% 
2021-02-08T14:07:51.4449548Z nbformat-5.1.2       | 66 KB     | ########## | 100% 
2021-02-08T14:07:51.4450089Z 
2021-02-08T14:07:51.7093066Z nbclient-0.5.1       | 60 KB     |            |   0% 
2021-02-08T14:07:51.7096423Z nbclient-0.5.1       | 60 KB     | ########## | 100% 
2021-02-08T14:07:51.7097553Z nbclient-0.5.1       | 60 KB     | ########## | 100% 
2021-02-08T14:07:51.7098099Z 
2021-02-08T14:07:52.0130250Z ipydatawidgets-4.2.0 | 171 KB    |            |   0% 
2021-02-08T14:07:52.0132889Z ipydatawidgets-4.2.0 | 171 KB    | ########## | 100% 
2021-02-08T14:07:52.0135310Z ipydatawidgets-4.2.0 | 171 KB    | ########## | 100% 
2021-02-08T14:07:52.0135666Z 
2021-02-08T14:07:52.6729478Z vs2015_runtime-14.28 | 1.4 MB    |            |   0% 
2021-02-08T14:07:52.6733805Z vs2015_runtime-14.28 | 1.4 MB    | ########## | 100% 
2021-02-08T14:07:52.6735052Z vs2015_runtime-14.28 | 1.4 MB    | ########## | 100% 
2021-02-08T14:07:52.6735727Z 
2021-02-08T14:07:52.8355665Z ninja-1.10.2         | 273 KB    |            |   0% 
2021-02-08T14:07:52.8358485Z ninja-1.10.2         | 273 KB    | ########## | 100% 
2021-02-08T14:07:52.8361931Z ninja-1.10.2         | 273 KB    | ########## | 100% 
2021-02-08T14:07:52.8362460Z 
2021-02-08T14:07:54.0923432Z sphinxcontrib-htmlhe | 27 KB     |            |   0% 
2021-02-08T14:07:54.0927792Z sphinxcontrib-htmlhe | 27 KB     | ########## | 100% 
2021-02-08T14:07:54.0929044Z sphinxcontrib-htmlhe | 27 KB     | ########## | 100% 
2021-02-08T14:07:54.0929607Z 
2021-02-08T14:07:54.2476163Z idna-2.10            | 52 KB     |            |   0% 
2021-02-08T14:07:54.2478338Z idna-2.10            | 52 KB     | ########## | 100% 
2021-02-08T14:07:54.2480038Z idna-2.10            | 52 KB     | ########## | 100% 
2021-02-08T14:07:54.2480478Z 
2021-02-08T14:07:54.4194069Z parso-0.7.1          | 70 KB     |            |   0% 
2021-02-08T14:07:54.4196405Z parso-0.7.1          | 70 KB     | ########## | 100% 
2021-02-08T14:07:54.4198242Z parso-0.7.1          | 70 KB     | ########## | 100% 
2021-02-08T14:07:54.4198807Z 
2021-02-08T14:07:54.4898317Z more-itertools-8.7.0 | 39 KB     |            |   0% 
2021-02-08T14:07:54.4899026Z more-itertools-8.7.0 | 39 KB     | ########## | 100% 
2021-02-08T14:07:54.4899438Z 
2021-02-08T14:07:54.5939125Z libblas-3.9.0        | 3.9 MB    |            |   0% 
2021-02-08T14:07:55.3732853Z libblas-3.9.0        | 3.9 MB    | #######3   |  73% 
2021-02-08T14:07:55.3737233Z libblas-3.9.0        | 3.9 MB    | ########## | 100% 
2021-02-08T14:07:55.3739701Z libblas-3.9.0        | 3.9 MB    | ########## | 100% 
2021-02-08T14:07:55.3740197Z 
2021-02-08T14:07:55.5647952Z freetype-2.10.4      | 489 KB    |            |   0% 
2021-02-08T14:07:55.5649091Z freetype-2.10.4      | 489 KB    | ########## | 100% 
2021-02-08T14:07:55.5650457Z freetype-2.10.4      | 489 KB    | ########## | 100% 
2021-02-08T14:07:55.5651108Z 
2021-02-08T14:07:55.6296276Z filelock-3.0.12      | 10 KB     |            |   0% 
2021-02-08T14:07:55.6297056Z filelock-3.0.12      | 10 KB     | ########## | 100% 
2021-02-08T14:07:55.6297440Z 
2021-02-08T14:07:55.7503853Z pyqt-5.12.3          | 22 KB     |            |   0% 
2021-02-08T14:07:55.7505695Z pyqt-5.12.3          | 22 KB     | ########## | 100% 
2021-02-08T14:07:55.7508104Z pyqt-5.12.3          | 22 KB     | ########## | 100% 
2021-02-08T14:07:55.7508471Z 
2021-02-08T14:07:55.8396216Z soupsieve-2.0.1      | 30 KB     |            |   0% 
2021-02-08T14:07:55.8396797Z soupsieve-2.0.1      | 30 KB     | ########## | 100% 
2021-02-08T14:07:55.8397148Z 
2021-02-08T14:07:55.9399509Z notebook-6.2.0       | 7.5 MB    |            |   0% 
2021-02-08T14:08:02.0618628Z notebook-6.2.0       | 7.5 MB    | #######2   |  72% 
2021-02-08T14:08:02.0622261Z notebook-6.2.0       | 7.5 MB    | ########## | 100% 
2021-02-08T14:08:02.0623395Z notebook-6.2.0       | 7.5 MB    | ########## | 100% 
2021-02-08T14:08:02.0623867Z 
2021-02-08T14:08:02.1624885Z pywin32-300          | 6.9 MB    |            |   0% 
2021-02-08T14:08:02.2632226Z pywin32-300          | 6.9 MB    | #4         |  14% 
2021-02-08T14:08:02.3649713Z pywin32-300          | 6.9 MB    | ###3       |  34% 
2021-02-08T14:08:07.8273748Z pywin32-300          | 6.9 MB    | #######4   |  75% 
2021-02-08T14:08:07.8276044Z pywin32-300          | 6.9 MB    | ########## | 100% 
2021-02-08T14:08:07.8277638Z pywin32-300          | 6.9 MB    | ########## | 100% 
2021-02-08T14:08:07.8277998Z 
2021-02-08T14:08:09.1398650Z pyzmq-22.0.1         | 690 KB    |            |   0% 
2021-02-08T14:08:09.1403071Z pyzmq-22.0.1         | 690 KB    | ########## | 100% 
2021-02-08T14:08:09.1404278Z pyzmq-22.0.1         | 690 KB    | ########## | 100% 
2021-02-08T14:08:09.1404954Z 
2021-02-08T14:08:09.2618148Z cached-property-1.5. | 10 KB     |            |   0% 
2021-02-08T14:08:09.2621227Z cached-property-1.5. | 10 KB     | ########## | 100% 
2021-02-08T14:08:09.2623602Z cached-property-1.5. | 10 KB     | ########## | 100% 
2021-02-08T14:08:09.2624136Z 
2021-02-08T14:08:09.4216049Z entrypoints-0.3      | 8 KB      |            |   0% 
2021-02-08T14:08:09.4218849Z entrypoints-0.3      | 8 KB      | ########## | 100% 
2021-02-08T14:08:09.4221507Z entrypoints-0.3      | 8 KB      | ########## | 100% 
2021-02-08T14:08:09.4221852Z 
2021-02-08T14:08:11.1524866Z pygments-2.7.4       | 708 KB    |            |   0% 
2021-02-08T14:08:11.1527926Z pygments-2.7.4       | 708 KB    | ########## | 100% 
2021-02-08T14:08:11.1530446Z pygments-2.7.4       | 708 KB    | ########## | 100% 
2021-02-08T14:08:11.1530924Z 
2021-02-08T14:08:11.5248600Z snowballstemmer-2.1. | 57 KB     |            |   0% 
2021-02-08T14:08:11.5251867Z snowballstemmer-2.1. | 57 KB     | ########## | 100% 
2021-02-08T14:08:11.5253102Z snowballstemmer-2.1. | 57 KB     | ########## | 100% 
2021-02-08T14:08:11.5253678Z 
2021-02-08T14:08:11.6315754Z cfgv-3.2.0           | 10 KB     |            |   0% 
2021-02-08T14:08:11.6317294Z cfgv-3.2.0           | 10 KB     | ########## | 100% 
2021-02-08T14:08:11.6318446Z cfgv-3.2.0           | 10 KB     | ########## | 100% 
2021-02-08T14:08:11.6319074Z 
2021-02-08T14:08:11.7456864Z webencodings-0.5.1   | 12 KB     |            |   0% 
2021-02-08T14:08:11.7459529Z webencodings-0.5.1   | 12 KB     | ########## | 100% 
2021-02-08T14:08:11.7460425Z webencodings-0.5.1   | 12 KB     | ########## | 100% 
2021-02-08T14:08:11.7460795Z 
2021-02-08T14:08:12.2072842Z libsodium-1.0.18     | 697 KB    |            |   0% 
2021-02-08T14:08:12.2075673Z libsodium-1.0.18     | 697 KB    | ########## | 100% 
2021-02-08T14:08:12.2078149Z libsodium-1.0.18     | 697 KB    | ########## | 100% 
2021-02-08T14:08:12.2078617Z 
2021-02-08T14:08:15.7079294Z babel-2.9.0          | 6.2 MB    |            |   0% 
2021-02-08T14:08:15.7082098Z babel-2.9.0          | 6.2 MB    | ########## | 100% 
2021-02-08T14:08:15.7084618Z babel-2.9.0          | 6.2 MB    | ########## | 100% 
2021-02-08T14:08:15.7085085Z 
2021-02-08T14:08:15.7873206Z pyopenssl-20.0.1     | 48 KB     |            |   0% 
2021-02-08T14:08:15.7874597Z pyopenssl-20.0.1     | 48 KB     | ########## | 100% 
2021-02-08T14:08:15.7875024Z 
2021-02-08T14:08:15.9344592Z flake8-3.8.4         | 89 KB     |            |   0% 
2021-02-08T14:08:15.9346172Z flake8-3.8.4         | 89 KB     | ########## | 100% 
2021-02-08T14:08:15.9347996Z flake8-3.8.4         | 89 KB     | ########## | 100% 
2021-02-08T14:08:15.9348355Z 
2021-02-08T14:08:16.1607876Z jupyter_core-4.7.1   | 96 KB     |            |   0% 
2021-02-08T14:08:16.1610254Z jupyter_core-4.7.1   | 96 KB     | ########## | 100% 
2021-02-08T14:08:16.1612355Z jupyter_core-4.7.1   | 96 KB     | ########## | 100% 
2021-02-08T14:08:16.1612705Z 
2021-02-08T14:08:16.2228935Z zipp-3.4.0           | 11 KB     |            |   0% 
2021-02-08T14:08:16.2229405Z zipp-3.4.0           | 11 KB     | ########## | 100% 
2021-02-08T14:08:16.2229635Z 
2021-02-08T14:08:16.3008991Z alabaster-0.7.12     | 15 KB     |            |   0% 
2021-02-08T14:08:16.3009567Z alabaster-0.7.12     | 15 KB     | ########## | 100% 
2021-02-08T14:08:16.3009790Z 
2021-02-08T14:08:16.3782059Z m2w64-libwinpthread- | 31 KB     |            |   0% 
2021-02-08T14:08:16.3782716Z m2w64-libwinpthread- | 31 KB     | ########## | 100% 
2021-02-08T14:08:16.3783122Z 
2021-02-08T14:08:16.4331018Z iniconfig-1.1.1      | 8 KB      |            |   0% 
2021-02-08T14:08:16.4331770Z iniconfig-1.1.1      | 8 KB      | ########## | 100% 
2021-02-08T14:08:16.4332164Z 
2021-02-08T14:08:16.5344054Z matplotlib-base-3.2. | 7.0 MB    |            |   0% 
2021-02-08T14:08:18.4503166Z matplotlib-base-3.2. | 7.0 MB    | ######5    |  66% 
2021-02-08T14:08:18.4506013Z matplotlib-base-3.2. | 7.0 MB    | ########## | 100% 
2021-02-08T14:08:18.4508669Z matplotlib-base-3.2. | 7.0 MB    | ########## | 100% 
2021-02-08T14:08:18.4509096Z 
2021-02-08T14:08:18.6294631Z pre-commit-2.10.0    | 247 KB    |            |   0% 
2021-02-08T14:08:18.6295303Z pre-commit-2.10.0    | 247 KB    | ########## | 100% 
2021-02-08T14:08:18.6296619Z pre-commit-2.10.0    | 247 KB    | ########## | 100% 
2021-02-08T14:08:18.6296900Z 
2021-02-08T14:08:18.7229785Z appdirs-1.4.4        | 13 KB     |            |   0% 
2021-02-08T14:08:18.7230395Z appdirs-1.4.4        | 13 KB     | ########## | 100% 
2021-02-08T14:08:18.7230707Z 
2021-02-08T14:08:19.6317447Z libcblas-3.9.0       | 3.9 MB    |            |   0% 
2021-02-08T14:08:19.6321452Z libcblas-3.9.0       | 3.9 MB    | ########## | 100% 
2021-02-08T14:08:19.6322682Z libcblas-3.9.0       | 3.9 MB    | ########## | 100% 
2021-02-08T14:08:19.6323186Z 
2021-02-08T14:08:19.6935824Z prometheus_client-0. | 44 KB     |            |   0% 
2021-02-08T14:08:19.6936319Z prometheus_client-0. | 44 KB     | ########## | 100% 
2021-02-08T14:08:19.6936705Z 
2021-02-08T14:08:19.8274615Z urllib3-1.26.3       | 99 KB     |            |   0% 
2021-02-08T14:08:19.8276575Z urllib3-1.26.3       | 99 KB     | ########## | 100% 
2021-02-08T14:08:19.8278336Z urllib3-1.26.3       | 99 KB     | ########## | 100% 
2021-02-08T14:08:19.8278739Z 
2021-02-08T14:08:19.8942334Z colorama-0.4.4       | 18 KB     |            |   0% 
2021-02-08T14:08:19.8943003Z colorama-0.4.4       | 18 KB     | ########## | 100% 
2021-02-08T14:08:19.8943432Z 
2021-02-08T14:08:20.0160211Z pluggy-0.13.1        | 30 KB     |            |   0% 
2021-02-08T14:08:20.0162493Z pluggy-0.13.1        | 30 KB     | ########## | 100% 
2021-02-08T14:08:20.0164707Z pluggy-0.13.1        | 30 KB     | ########## | 100% 
2021-02-08T14:08:20.0165053Z 
2021-02-08T14:08:20.5439037Z mistune-0.8.4        | 54 KB     |            |   0% 
2021-02-08T14:08:20.5442286Z mistune-0.8.4        | 54 KB     | ########## | 100% 
2021-02-08T14:08:20.5443345Z mistune-0.8.4        | 54 KB     | ########## | 100% 
2021-02-08T14:08:20.5443983Z 
2021-02-08T14:08:20.6444069Z zeromq-4.3.3         | 9.0 MB    |            |   0% 
2021-02-08T14:08:22.8593617Z zeromq-4.3.3         | 9.0 MB    | ####1      |  42% 
2021-02-08T14:08:22.8596310Z zeromq-4.3.3         | 9.0 MB    | ########## | 100% 
2021-02-08T14:08:22.8598516Z zeromq-4.3.3         | 9.0 MB    | ########## | 100% 
2021-02-08T14:08:22.8598880Z 
2021-02-08T14:08:27.1558015Z sphinx-3.4.3         | 1.5 MB    |            |   0% 
2021-02-08T14:08:27.1560843Z sphinx-3.4.3         | 1.5 MB    | ########## | 100% 
2021-02-08T14:08:27.1563185Z sphinx-3.4.3         | 1.5 MB    | ########## | 100% 
2021-02-08T14:08:27.1563694Z 
2021-02-08T14:08:27.3442652Z ipython_genutils-0.2 | 21 KB     |            |   0% 
2021-02-08T14:08:27.3446551Z ipython_genutils-0.2 | 21 KB     | ########## | 100% 
2021-02-08T14:08:27.3447635Z ipython_genutils-0.2 | 21 KB     | ########## | 100% 
2021-02-08T14:08:27.3448192Z 
2021-02-08T14:08:27.4869704Z m2w64-gcc-libs-core- | 214 KB    |            |   0% 
2021-02-08T14:08:27.4874044Z m2w64-gcc-libs-core- | 214 KB    | ########## | 100% 
2021-02-08T14:08:27.4875327Z m2w64-gcc-libs-core- | 214 KB    | ########## | 100% 
2021-02-08T14:08:27.4875920Z 
2021-02-08T14:08:27.5873495Z icu-68.1             | 16.3 MB   |            |   0% 
2021-02-08T14:08:27.6871475Z icu-68.1             | 16.3 MB   | ###1       |  31% 
2021-02-08T14:08:31.4332270Z icu-68.1             | 16.3 MB   | #########5 |  96% 
2021-02-08T14:08:31.4333114Z icu-68.1             | 16.3 MB   | ########## | 100% 
2021-02-08T14:08:31.4333432Z 
2021-02-08T14:08:31.6057137Z defusedxml-0.6.0     | 22 KB     |            |   0% 
2021-02-08T14:08:31.6061899Z defusedxml-0.6.0     | 22 KB     | ########## | 100% 
2021-02-08T14:08:31.6066484Z defusedxml-0.6.0     | 22 KB     | ########## | 100% 
2021-02-08T14:08:31.6067156Z 
2021-02-08T14:08:31.7071269Z virtualenv-20.4.2    | 6.5 MB    |            |   0% 
2021-02-08T14:08:33.7343111Z virtualenv-20.4.2    | 6.5 MB    | #####8     |  58% 
2021-02-08T14:08:33.7345991Z virtualenv-20.4.2    | 6.5 MB    | ########## | 100% 
2021-02-08T14:08:33.7347051Z virtualenv-20.4.2    | 6.5 MB    | ########## | 100% 
2021-02-08T14:08:33.7347689Z 
2021-02-08T14:08:36.4146901Z jedi-0.17.2          | 941 KB    |            |   0% 
2021-02-08T14:08:36.4149678Z jedi-0.17.2          | 941 KB    | ########## | 100% 
2021-02-08T14:08:36.4152178Z jedi-0.17.2          | 941 KB    | ########## | 100% 
2021-02-08T14:08:36.4152587Z 
2021-02-08T14:08:36.5780857Z pycparser-2.20       | 94 KB     |            |   0% 
2021-02-08T14:08:36.5783190Z pycparser-2.20       | 94 KB     | ########## | 100% 
2021-02-08T14:08:36.5785062Z pycparser-2.20       | 94 KB     | ########## | 100% 
2021-02-08T14:08:36.5785393Z 
2021-02-08T14:08:36.6773767Z identify-1.5.13      | 76 KB     |            |   0% 
2021-02-08T14:08:36.6774568Z identify-1.5.13      | 76 KB     | ########## | 100% 
2021-02-08T14:08:36.6774974Z 
2021-02-08T14:08:36.7720505Z beautifulsoup4-4.9.3 | 86 KB     |            |   0% 
2021-02-08T14:08:36.7721101Z beautifulsoup4-4.9.3 | 86 KB     | ########## | 100% 
2021-02-08T14:08:36.7721540Z 
2021-02-08T14:08:36.8803001Z cffi-1.14.4          | 226 KB    |            |   0% 
2021-02-08T14:08:36.8805110Z cffi-1.14.4          | 226 KB    | ########## | 100% 
2021-02-08T14:08:36.8806787Z cffi-1.14.4          | 226 KB    | ########## | 100% 
2021-02-08T14:08:36.8807079Z 
2021-02-08T14:08:37.6169769Z docutils-0.16        | 741 KB    |            |   0% 
2021-02-08T14:08:37.6172825Z docutils-0.16        | 741 KB    | ########## | 100% 
2021-02-08T14:08:37.6175359Z docutils-0.16        | 741 KB    | ########## | 100% 
2021-02-08T14:08:37.6175954Z 
2021-02-08T14:08:38.3532130Z chardet-4.0.0        | 215 KB    |            |   0% 
2021-02-08T14:08:38.3534949Z chardet-4.0.0        | 215 KB    | ########## | 100% 
2021-02-08T14:08:38.3566477Z chardet-4.0.0        | 215 KB    | ########## | 100% 
2021-02-08T14:08:38.3567478Z 
2021-02-08T14:08:38.4604276Z nodeenv-1.5.0        | 30 KB     |            |   0% 
2021-02-08T14:08:38.4606049Z nodeenv-1.5.0        | 30 KB     | ########## | 100% 
2021-02-08T14:08:38.4607541Z nodeenv-1.5.0        | 30 KB     | ########## | 100% 
2021-02-08T14:08:38.4607994Z 
2021-02-08T14:08:38.5569444Z python-dateutil-2.8. | 220 KB    |            |   0% 
2021-02-08T14:08:38.5570997Z python-dateutil-2.8. | 220 KB    | ########## | 100% 
2021-02-08T14:08:38.5571615Z 
2021-02-08T14:08:38.6040719Z pickleshare-0.7.5    | 9 KB      |            |   0% 
2021-02-08T14:08:38.6041257Z pickleshare-0.7.5    | 9 KB      | ########## | 100% 
2021-02-08T14:08:38.6041673Z 
2021-02-08T14:08:38.7885758Z editdistance-0.5.3   | 30 KB     |            |   0% 
2021-02-08T14:08:38.7888004Z editdistance-0.5.3   | 30 KB     | ########## | 100% 
2021-02-08T14:08:38.7890034Z editdistance-0.5.3   | 30 KB     | ########## | 100% 
2021-02-08T14:08:38.7890362Z 
2021-02-08T14:08:38.9104489Z jpeg-9d              | 366 KB    |            |   0% 
2021-02-08T14:08:38.9106202Z jpeg-9d              | 366 KB    | ########## | 100% 
2021-02-08T14:08:38.9107952Z jpeg-9d              | 366 KB    | ########## | 100% 
2021-02-08T14:08:38.9108267Z 
2021-02-08T14:08:38.9976285Z attrs-20.3.0         | 41 KB     |            |   0% 
2021-02-08T14:08:38.9977160Z attrs-20.3.0         | 41 KB     | ########## | 100% 
2021-02-08T14:08:38.9977437Z 
2021-02-08T14:08:39.0614687Z markupsafe-1.1.1     | 30 KB     |            |   0% 
2021-02-08T14:08:39.0615348Z markupsafe-1.1.1     | 30 KB     | ########## | 100% 
2021-02-08T14:08:39.0615758Z 
2021-02-08T14:08:39.2526688Z psutil-5.8.0         | 362 KB    |            |   0% 
2021-02-08T14:08:39.2528780Z psutil-5.8.0         | 362 KB    | ########## | 100% 
2021-02-08T14:08:39.2530764Z psutil-5.8.0         | 362 KB    | ########## | 100% 
2021-02-08T14:08:39.2531237Z 
2021-02-08T14:08:42.5667769Z tk-8.6.10            | 3.2 MB    |            |   0% 
2021-02-08T14:08:42.5670655Z tk-8.6.10            | 3.2 MB    | ########## | 100% 
2021-02-08T14:08:42.5671821Z tk-8.6.10            | 3.2 MB    | ########## | 100% 
2021-02-08T14:08:42.5672401Z 
2021-02-08T14:08:42.6935714Z ca-certificates-2020 | 173 KB    |            |   0% 
2021-02-08T14:08:42.6936940Z ca-certificates-2020 | 173 KB    | ########## | 100% 
2021-02-08T14:08:42.6938248Z ca-certificates-2020 | 173 KB    | ########## | 100% 
2021-02-08T14:08:42.6939673Z 
2021-02-08T14:08:43.4914543Z pycodestyle-2.6.0    | 38 KB     |            |   0% 
2021-02-08T14:08:43.4916971Z pycodestyle-2.6.0    | 38 KB     | ########## | 100% 
2021-02-08T14:08:43.4918995Z pycodestyle-2.6.0    | 38 KB     | ########## | 100% 
2021-02-08T14:08:43.4919480Z 
2021-02-08T14:08:43.6107917Z jupyterlab_pygments- | 8 KB      |            |   0% 
2021-02-08T14:08:43.6109680Z jupyterlab_pygments- | 8 KB      | ########## | 100% 
2021-02-08T14:08:43.6111401Z jupyterlab_pygments- | 8 KB      | ########## | 100% 
2021-02-08T14:08:43.6111766Z 
2021-02-08T14:08:43.7231794Z imagesize-1.2.0      | 8 KB      |            |   0% 
2021-02-08T14:08:43.7234463Z imagesize-1.2.0      | 8 KB      | ########## | 100% 
2021-02-08T14:08:43.7236751Z imagesize-1.2.0      | 8 KB      | ########## | 100% 
2021-02-08T14:08:43.7237178Z 
2021-02-08T14:08:43.8243473Z qt-5.12.9            | 106.2 MB  |            |   0% 
2021-02-08T14:08:43.9254186Z qt-5.12.9            | 106.2 MB  | 3          |   3% 
2021-02-08T14:08:44.0272845Z qt-5.12.9            | 106.2 MB  | 6          |   7% 
2021-02-08T14:08:44.1264173Z qt-5.12.9            | 106.2 MB  | #2         |  13% 
2021-02-08T14:08:44.2272624Z qt-5.12.9            | 106.2 MB  | ##1        |  22% 
2021-02-08T14:08:44.3274570Z qt-5.12.9            | 106.2 MB  | ###        |  31% 
2021-02-08T14:08:44.4369432Z qt-5.12.9            | 106.2 MB  | ###9       |  39% 
2021-02-08T14:08:44.5368641Z qt-5.12.9            | 106.2 MB  | ####5      |  46% 
2021-02-08T14:08:44.6367147Z qt-5.12.9            | 106.2 MB  | #####3     |  53% 
2021-02-08T14:08:44.7399745Z qt-5.12.9            | 106.2 MB  | ######5    |  66% 
2021-02-08T14:08:44.8556523Z qt-5.12.9            | 106.2 MB  | #######7   |  78% 
2021-02-08T14:08:45.0132531Z qt-5.12.9            | 106.2 MB  | ########7  |  87% 
2021-02-08T14:09:25.0373021Z qt-5.12.9            | 106.2 MB  | #########6 |  97% 
2021-02-08T14:09:25.0374099Z qt-5.12.9            | 106.2 MB  | ########## | 100% 
2021-02-08T14:09:25.0374556Z 
2021-02-08T14:09:25.1656187Z mccabe-0.6.1         | 8 KB      |            |   0% 
2021-02-08T14:09:25.3626495Z mccabe-0.6.1         | 8 KB      | ########## | 100% 
2021-02-08T14:09:25.3629878Z mccabe-0.6.1         | 8 KB      | ########## | 100% 
2021-02-08T14:09:25.3630632Z 
2021-02-08T14:09:25.5208311Z win_inet_pton-1.1.0  | 8 KB      |            |   0% 
2021-02-08T14:09:25.5212607Z win_inet_pton-1.1.0  | 8 KB      | ########## | 100% 
2021-02-08T14:09:25.5213977Z win_inet_pton-1.1.0  | 8 KB      | ########## | 100% 
2021-02-08T14:09:25.5214571Z 
2021-02-08T14:09:25.6872946Z terminado-0.9.2      | 26 KB     |            |   0% 
2021-02-08T14:09:25.6875097Z terminado-0.9.2      | 26 KB     | ########## | 100% 
2021-02-08T14:09:25.6877044Z terminado-0.9.2      | 26 KB     | ########## | 100% 
2021-02-08T14:09:25.6877516Z 
2021-02-08T14:09:25.9377598Z wcwidth-0.2.5        | 33 KB     |            |   0% 
2021-02-08T14:09:25.9379905Z wcwidth-0.2.5        | 33 KB     | ########## | 100% 
2021-02-08T14:09:25.9381939Z wcwidth-0.2.5        | 33 KB     | ########## | 100% 
2021-02-08T14:09:25.9382251Z 
2021-02-08T14:09:26.2135832Z ipympl-0.6.3         | 49 KB     |            |   0% 
2021-02-08T14:09:26.2136858Z ipympl-0.6.3         | 49 KB     | ########## | 100% 
2021-02-08T14:09:26.2138940Z ipympl-0.6.3         | 49 KB     | ########## | 100% 
2021-02-08T14:09:26.2139285Z 
2021-02-08T14:09:26.3951718Z certifi-2020.12.5    | 143 KB    |            |   0% 
2021-02-08T14:09:26.3954004Z certifi-2020.12.5    | 143 KB    | ########## | 100% 
2021-02-08T14:09:26.3956275Z certifi-2020.12.5    | 143 KB    | ########## | 100% 
2021-02-08T14:09:26.3956617Z 
2021-02-08T14:09:29.2050094Z pytz-2021.1          | 239 KB    |            |   0% 
2021-02-08T14:09:29.2054285Z pytz-2021.1          | 239 KB    | ########## | 100% 
2021-02-08T14:09:29.2055675Z pytz-2021.1          | 239 KB    | ########## | 100% 
2021-02-08T14:09:29.2056327Z 
2021-02-08T14:09:29.6355929Z krb5-1.17.2          | 856 KB    |            |   0% 
2021-02-08T14:09:29.6358996Z krb5-1.17.2          | 856 KB    | ########## | 100% 
2021-02-08T14:09:29.6361385Z krb5-1.17.2          | 856 KB    | ########## | 100% 
2021-02-08T14:09:29.6361780Z 
2021-02-08T14:09:30.9137348Z cryptography-3.3.1   | 593 KB    |            |   0% 
2021-02-08T14:09:30.9141680Z cryptography-3.3.1   | 593 KB    | ########## | 100% 
2021-02-08T14:09:30.9142782Z cryptography-3.3.1   | 593 KB    | ########## | 100% 
2021-02-08T14:09:30.9144705Z 
2021-02-08T14:09:31.4276554Z pyreadline-2.1       | 145 KB    |            |   0% 
2021-02-08T14:09:31.4278596Z pyreadline-2.1       | 145 KB    | ########## | 100% 
2021-02-08T14:09:31.4280493Z pyreadline-2.1       | 145 KB    | ########## | 100% 
2021-02-08T14:09:31.4280843Z 
2021-02-08T14:09:31.7686463Z jupyter_client-6.1.1 | 76 KB     |            |   0% 
2021-02-08T14:09:31.7689027Z jupyter_client-6.1.1 | 76 KB     | ########## | 100% 
2021-02-08T14:09:31.7691457Z jupyter_client-6.1.1 | 76 KB     | ########## | 100% 
2021-02-08T14:09:31.7692028Z 
2021-02-08T14:09:31.9135326Z pysocks-1.7.1        | 28 KB     |            |   0% 
2021-02-08T14:09:31.9138120Z pysocks-1.7.1        | 28 KB     | ########## | 100% 
2021-02-08T14:09:31.9139560Z pysocks-1.7.1        | 28 KB     | ########## | 100% 
2021-02-08T14:09:31.9140135Z 
2021-02-08T14:09:32.1582819Z decorator-4.4.2      | 11 KB     |            |   0% 
2021-02-08T14:09:32.1588108Z decorator-4.4.2      | 11 KB     | ########## | 100% 
2021-02-08T14:09:32.1591715Z decorator-4.4.2      | 11 KB     | ########## | 100% 
2021-02-08T14:09:32.1592462Z 
2021-02-08T14:09:32.2798095Z mkl-2020.4           | 172.4 MB  |            |   0% 
2021-02-08T14:09:32.3897005Z mkl-2020.4           | 172.4 MB  |            |   0% 
2021-02-08T14:09:32.4921402Z mkl-2020.4           | 172.4 MB  | 1          |   1% 
2021-02-08T14:09:32.5921068Z mkl-2020.4           | 172.4 MB  | 3          |   4% 
2021-02-08T14:09:32.7014177Z mkl-2020.4           | 172.4 MB  | 6          |   7% 
2021-02-08T14:09:32.8139759Z mkl-2020.4           | 172.4 MB  | 9          |   9% 
2021-02-08T14:09:32.9202079Z mkl-2020.4           | 172.4 MB  | #1         |  12% 
2021-02-08T14:09:33.0258250Z mkl-2020.4           | 172.4 MB  | #3         |  14% 
2021-02-08T14:09:33.1371547Z mkl-2020.4           | 172.4 MB  | #5         |  15% 
2021-02-08T14:09:33.2403067Z mkl-2020.4           | 172.4 MB  | #7         |  18% 
2021-02-08T14:09:33.4388123Z mkl-2020.4           | 172.4 MB  | ##         |  20% 
2021-02-08T14:09:33.5429317Z mkl-2020.4           | 172.4 MB  | ##2        |  22% 
2021-02-08T14:09:33.6439021Z mkl-2020.4           | 172.4 MB  | ##3        |  24% 
2021-02-08T14:09:33.7474091Z mkl-2020.4           | 172.4 MB  | ##6        |  26% 
2021-02-08T14:09:33.8482165Z mkl-2020.4           | 172.4 MB  | ##8        |  28% 
2021-02-08T14:09:33.9551982Z mkl-2020.4           | 172.4 MB  | ###1       |  32% 
2021-02-08T14:09:34.0545869Z mkl-2020.4           | 172.4 MB  | ###6       |  36% 
2021-02-08T14:09:34.1543674Z mkl-2020.4           | 172.4 MB  | ####2      |  42% 
2021-02-08T14:09:34.2553843Z mkl-2020.4           | 172.4 MB  | ####8      |  49% 
2021-02-08T14:09:34.4128581Z mkl-2020.4           | 172.4 MB  | #####3     |  54% 
2021-02-08T14:09:34.5133290Z mkl-2020.4           | 172.4 MB  | #####8     |  59% 
2021-02-08T14:09:34.6130082Z mkl-2020.4           | 172.4 MB  | ######2    |  63% 
2021-02-08T14:09:34.7138003Z mkl-2020.4           | 172.4 MB  | ######7    |  68% 
2021-02-08T14:09:34.8337207Z mkl-2020.4           | 172.4 MB  | #######2   |  73% 
2021-02-08T14:09:34.9327985Z mkl-2020.4           | 172.4 MB  | #######7   |  77% 
2021-02-08T14:09:35.0329527Z mkl-2020.4           | 172.4 MB  | ########5  |  85% 
2021-02-08T14:09:35.1613823Z mkl-2020.4           | 172.4 MB  | #########2 |  92% 
2021-02-08T14:10:03.3314009Z mkl-2020.4           | 172.4 MB  | #########8 |  98% 
2021-02-08T14:10:03.3315409Z mkl-2020.4           | 172.4 MB  | ########## | 100% 
2021-02-08T14:10:03.3315880Z 
2021-02-08T14:10:04.2100262Z sphinxcontrib-devhel | 22 KB     |            |   0% 
2021-02-08T14:10:04.2103083Z sphinxcontrib-devhel | 22 KB     | ########## | 100% 
2021-02-08T14:10:04.2105441Z sphinxcontrib-devhel | 22 KB     | ########## | 100% 
2021-02-08T14:10:04.2106028Z 
2021-02-08T14:10:04.2700760Z backcall-0.2.0       | 13 KB     |            |   0% 
2021-02-08T14:10:04.2702351Z backcall-0.2.0       | 13 KB     | ########## | 100% 
2021-02-08T14:10:04.2702996Z 
2021-02-08T14:10:05.5256234Z pip-21.0.1           | 1.1 MB    |            |   0% 
2021-02-08T14:10:05.5258987Z pip-21.0.1           | 1.1 MB    | ########## | 100% 
2021-02-08T14:10:05.5261508Z pip-21.0.1           | 1.1 MB    | ########## | 100% 
2021-02-08T14:10:05.5261829Z 
2021-02-08T14:10:05.6373441Z m2w64-gcc-libgfortra | 342 KB    |            |   0% 
2021-02-08T14:10:05.6376685Z m2w64-gcc-libgfortra | 342 KB    | ########## | 100% 
2021-02-08T14:10:05.6378791Z m2w64-gcc-libgfortra | 342 KB    | ########## | 100% 
2021-02-08T14:10:05.6379086Z 
2021-02-08T14:10:05.8194663Z yapf-0.30.0          | 124 KB    |            |   0% 
2021-02-08T14:10:05.8197584Z yapf-0.30.0          | 124 KB    | ########## | 100% 
2021-02-08T14:10:05.8199837Z yapf-0.30.0          | 124 KB    | ########## | 100% 
2021-02-08T14:10:05.8200196Z 
2021-02-08T14:10:05.9207844Z jinja2-2.11.3        | 93 KB     |            |   0% 
2021-02-08T14:10:05.9210407Z jinja2-2.11.3        | 93 KB     | ########## | 100% 
2021-02-08T14:10:05.9212804Z jinja2-2.11.3        | 93 KB     | ########## | 100% 
2021-02-08T14:10:05.9213160Z 
2021-02-08T14:10:06.0137789Z pyflakes-2.2.0       | 55 KB     |            |   0% 
2021-02-08T14:10:06.0139106Z pyflakes-2.2.0       | 55 KB     | ########## | 100% 
2021-02-08T14:10:06.0139476Z 
2021-02-08T14:10:06.0897024Z python_abi-3.7       | 4 KB      |            |   0% 
2021-02-08T14:10:06.0897816Z python_abi-3.7       | 4 KB      | ########## | 100% 
2021-02-08T14:10:06.0898174Z 
2021-02-08T14:10:06.1531290Z traittypes-0.2.1     | 10 KB     |            |   0% 
2021-02-08T14:10:06.1531936Z traittypes-0.2.1     | 10 KB     | ########## | 100% 
2021-02-08T14:10:06.1532317Z 
2021-02-08T14:10:06.2149830Z matplotlib-3.2.2     | 6 KB      |            |   0% 
2021-02-08T14:10:06.2150383Z matplotlib-3.2.2     | 6 KB      | ########## | 100% 
2021-02-08T14:10:06.2150870Z 
2021-02-08T14:10:06.6984712Z sphinxcontrib-appleh | 28 KB     |            |   0% 
2021-02-08T14:10:06.6986808Z sphinxcontrib-appleh | 28 KB     | ########## | 100% 
2021-02-08T14:10:06.6988681Z sphinxcontrib-appleh | 28 KB     | ########## | 100% 
2021-02-08T14:10:06.6988947Z 
2021-02-08T14:10:06.8371487Z pytest-6.2.2         | 461 KB    |            |   0% 
2021-02-08T14:10:07.0367358Z pytest-6.2.2         | 461 KB    | 3          |   3% 
2021-02-08T14:10:07.0367965Z pytest-6.2.2         | 461 KB    | ########## | 100% 
2021-02-08T14:10:07.0369441Z pytest-6.2.2         | 461 KB    | ########## | 100% 
2021-02-08T14:10:07.0369701Z 
2021-02-08T14:10:07.1561216Z pyqtwebengine-5.12.1 | 143 KB    |            |   0% 
2021-02-08T14:10:07.1563788Z pyqtwebengine-5.12.1 | 143 KB    | ########## | 100% 
2021-02-08T14:10:07.1566046Z pyqtwebengine-5.12.1 | 143 KB    | ########## | 100% 
2021-02-08T14:10:07.1566425Z 
2021-02-08T14:10:07.5207860Z h5py-3.1.0           | 1009 KB   |            |   0% 
2021-02-08T14:10:07.5210910Z h5py-3.1.0           | 1009 KB   | ########## | 100% 
2021-02-08T14:10:07.5221342Z h5py-3.1.0           | 1009 KB   | ########## | 100% 
2021-02-08T14:10:07.5221734Z 
2021-02-08T14:10:07.6266733Z sphinxcontrib-qthelp | 25 KB     |            |   0% 
2021-02-08T14:10:08.1055235Z sphinxcontrib-qthelp | 25 KB     | ######3    |  64% 
2021-02-08T14:10:08.1059130Z sphinxcontrib-qthelp | 25 KB     | ########## | 100% 
2021-02-08T14:10:08.1061450Z sphinxcontrib-qthelp | 25 KB     | ########## | 100% 
2021-02-08T14:10:08.1061788Z 
2021-02-08T14:10:09.8418200Z nbconvert-6.0.7      | 548 KB    |            |   0% 
2021-02-08T14:10:09.8419027Z nbconvert-6.0.7      | 548 KB    | ########## | 100% 
2021-02-08T14:10:09.8422756Z nbconvert-6.0.7      | 548 KB    | ########## | 100% 
2021-02-08T14:10:09.8423663Z 
2021-02-08T14:10:10.7368748Z ipykernel-5.4.2      | 165 KB    |            |   0% 
2021-02-08T14:10:10.7371465Z ipykernel-5.4.2      | 165 KB    | ########## | 100% 
2021-02-08T14:10:10.7374116Z ipykernel-5.4.2      | 165 KB    | ########## | 100% 
2021-02-08T14:10:10.7374676Z 
2021-02-08T14:10:10.8644495Z backports.functools_ | 8 KB      |            |   0% 
2021-02-08T14:10:10.8648780Z backports.functools_ | 8 KB      | ########## | 100% 
2021-02-08T14:10:10.8650018Z backports.functools_ | 8 KB      | ########## | 100% 
2021-02-08T14:10:10.8650594Z 
2021-02-08T14:10:11.4676059Z kiwisolver-1.3.1     | 58 KB     |            |   0% 
2021-02-08T14:10:11.4681148Z kiwisolver-1.3.1     | 58 KB     | ########## | 100% 
2021-02-08T14:10:11.4685428Z kiwisolver-1.3.1     | 58 KB     | ########## | 100% 
2021-02-08T14:10:11.4686194Z 
2021-02-08T14:10:12.2900289Z msys2-conda-epoch-20 | 3 KB      |            |   0% 
2021-02-08T14:10:12.2904805Z msys2-conda-epoch-20 | 3 KB      | ########## | 100% 
2021-02-08T14:10:12.2907856Z msys2-conda-epoch-20 | 3 KB      | ########## | 100% 
2021-02-08T14:10:12.2908247Z 
2021-02-08T14:10:12.4303242Z send2trash-1.5.0     | 12 KB     |            |   0% 
2021-02-08T14:10:12.4306447Z send2trash-1.5.0     | 12 KB     | ########## | 100% 
2021-02-08T14:10:12.4308842Z send2trash-1.5.0     | 12 KB     | ########## | 100% 
2021-02-08T14:10:12.4309265Z 
2021-02-08T14:10:12.8329333Z libpng-1.6.37        | 724 KB    |            |   0% 
2021-02-08T14:10:12.8332556Z libpng-1.6.37        | 724 KB    | ########## | 100% 
2021-02-08T14:10:12.8335412Z libpng-1.6.37        | 724 KB    | ########## | 100% 
2021-02-08T14:10:12.8336299Z 
2021-02-08T14:10:13.0138275Z packaging-20.9       | 35 KB     |            |   0% 
2021-02-08T14:10:13.0140228Z packaging-20.9       | 35 KB     | ########## | 100% 
2021-02-08T14:10:13.0142435Z packaging-20.9       | 35 KB     | ########## | 100% 
2021-02-08T14:10:13.0142843Z 
2021-02-08T14:10:13.8078705Z prompt-toolkit-3.0.1 | 239 KB    |            |   0% 
2021-02-08T14:10:13.8081380Z prompt-toolkit-3.0.1 | 239 KB    | ########## | 100% 
2021-02-08T14:10:13.8083288Z prompt-toolkit-3.0.1 | 239 KB    | ########## | 100% 
2021-02-08T14:10:13.8083650Z 
2021-02-08T14:10:13.9119926Z pythreejs-2.2.1      | 2.7 MB    |            |   0% 
2021-02-08T14:10:15.5916150Z pythreejs-2.2.1      | 2.7 MB    | ######1    |  62% 
2021-02-08T14:10:15.5920141Z pythreejs-2.2.1      | 2.7 MB    | ########## | 100% 
2021-02-08T14:10:15.5921387Z pythreejs-2.2.1      | 2.7 MB    | ########## | 100% 
2021-02-08T14:10:15.5921994Z 
2021-02-08T14:10:15.7596961Z wincertstore-0.2     | 15 KB     |            |   0% 
2021-02-08T14:10:15.7600408Z wincertstore-0.2     | 15 KB     | ########## | 100% 
2021-02-08T14:10:15.7603563Z wincertstore-0.2     | 15 KB     | ########## | 100% 
2021-02-08T14:10:15.7603838Z 
2021-02-08T14:10:16.0881430Z jsonschema-3.2.0     | 45 KB     |            |   0% 
2021-02-08T14:10:16.0885357Z jsonschema-3.2.0     | 45 KB     | ########## | 100% 
2021-02-08T14:10:16.0886564Z jsonschema-3.2.0     | 45 KB     | ########## | 100% 
2021-02-08T14:10:16.0887086Z 
2021-02-08T14:10:16.2663072Z zlib-1.2.11          | 126 KB    |            |   0% 
2021-02-08T14:10:16.2665925Z zlib-1.2.11          | 126 KB    | ########## | 100% 
2021-02-08T14:10:16.2668164Z zlib-1.2.11          | 126 KB    | ########## | 100% 
2021-02-08T14:10:16.2668780Z 
2021-02-08T14:10:16.4206551Z sphinxcontrib-jsmath | 7 KB      |            |   0% 
2021-02-08T14:10:16.4209024Z sphinxcontrib-jsmath | 7 KB      | ########## | 100% 
2021-02-08T14:10:16.4211240Z sphinxcontrib-jsmath | 7 KB      | ########## | 100% 
2021-02-08T14:10:16.4211790Z 
2021-02-08T14:10:16.5031150Z backports-1.0        | 4 KB      |            |   0% 
2021-02-08T14:10:16.5031843Z backports-1.0        | 4 KB      | ########## | 100% 
2021-02-08T14:10:16.5032266Z 
2021-02-08T14:10:17.0546085Z distlib-0.3.1        | 246 KB    |            |   0% 
2021-02-08T14:10:17.0548821Z distlib-0.3.1        | 246 KB    | ########## | 100% 
2021-02-08T14:10:17.0551211Z distlib-0.3.1        | 246 KB    | ########## | 100% 
2021-02-08T14:10:17.0551811Z 
2021-02-08T14:10:18.1070860Z liblapack-3.9.0      | 3.9 MB    |            |   0% 
2021-02-08T14:10:18.1075264Z liblapack-3.9.0      | 3.9 MB    | ########## | 100% 
2021-02-08T14:10:18.1076618Z liblapack-3.9.0      | 3.9 MB    | ########## | 100% 
2021-02-08T14:10:18.1077183Z 
2021-02-08T14:10:18.4006156Z sqlite-3.34.0        | 1.2 MB    |            |   0% 
2021-02-08T14:10:18.4008207Z sqlite-3.34.0        | 1.2 MB    | ########## | 100% 
2021-02-08T14:10:18.4010469Z sqlite-3.34.0        | 1.2 MB    | ########## | 100% 
2021-02-08T14:10:18.4010855Z 
2021-02-08T14:10:18.6973992Z winpty-0.4.3         | 1.1 MB    |            |   0% 
2021-02-08T14:10:18.6976981Z winpty-0.4.3         | 1.1 MB    | ########## | 100% 
2021-02-08T14:10:18.6979278Z winpty-0.4.3         | 1.1 MB    | ########## | 100% 
2021-02-08T14:10:18.6979923Z 
2021-02-08T14:10:18.8484977Z pyparsing-2.4.7      | 60 KB     |            |   0% 
2021-02-08T14:10:18.8487882Z pyparsing-2.4.7      | 60 KB     | ########## | 100% 
2021-02-08T14:10:18.8488430Z pyparsing-2.4.7      | 60 KB     | ########## | 100% 
2021-02-08T14:10:18.8488687Z 
2021-02-08T14:10:18.9982920Z tbb-2020.2           | 175 KB    |            |   0% 
2021-02-08T14:10:18.9985374Z tbb-2020.2           | 175 KB    | ########## | 100% 
2021-02-08T14:10:18.9986592Z tbb-2020.2           | 175 KB    | ########## | 100% 
2021-02-08T14:10:18.9987095Z 
2021-02-08T14:10:19.0985046Z numpy-1.20.0         | 5.2 MB    |            |   0% 
2021-02-08T14:10:24.8454846Z numpy-1.20.0         | 5.2 MB    | #########8 |  98% 
2021-02-08T14:10:24.8456251Z numpy-1.20.0         | 5.2 MB    | ########## | 100% 
2021-02-08T14:10:24.8456781Z 
2021-02-08T14:10:26.6318536Z tbb-devel-2020.2     | 2.3 MB    |            |   0% 
2021-02-08T14:10:26.6321149Z tbb-devel-2020.2     | 2.3 MB    | ########## | 100% 
2021-02-08T14:10:26.6323523Z tbb-devel-2020.2     | 2.3 MB    | ########## | 100% 
2021-02-08T14:10:26.6323875Z 
2021-02-08T14:10:27.0452181Z py-1.10.0            | 73 KB     |            |   0% 
2021-02-08T14:10:27.0453869Z py-1.10.0            | 73 KB     | ########## | 100% 
2021-02-08T14:10:27.0454993Z py-1.10.0            | 73 KB     | ########## | 100% 
2021-02-08T14:10:27.0455560Z 
2021-02-08T14:10:27.2132367Z nbsphinx-0.8.1       | 25 KB     |            |   0% 
2021-02-08T14:10:27.2135808Z nbsphinx-0.8.1       | 25 KB     | ########## | 100% 
2021-02-08T14:10:27.2136836Z nbsphinx-0.8.1       | 25 KB     | ########## | 100% 
2021-02-08T14:10:29.6689505Z Preparing transaction: ...working... done
2021-02-08T14:10:35.5307675Z Verifying transaction: ...working... done
2021-02-08T14:11:19.2093987Z Executing transaction: ...working... Enabling notebook extension jupyter-js-widgets/extension...
2021-02-08T14:11:19.2095616Z       - Validating: ok
2021-02-08T14:11:19.2096143Z 
2021-02-08T14:11:19.2096879Z done
2021-02-08T14:11:19.3393906Z #
2021-02-08T14:11:19.3394677Z # To activate this environment, use
2021-02-08T14:11:19.3395105Z #
2021-02-08T14:11:19.3395559Z #     $ conda activate scipp-developer
2021-02-08T14:11:19.3395993Z #
2021-02-08T14:11:19.3396433Z # To deactivate an active environment, use
2021-02-08T14:11:19.3396864Z #
2021-02-08T14:11:19.3397275Z #     $ conda deactivate
2021-02-08T14:11:19.3397515Z 
2021-02-08T14:11:21.0274487Z + mkdir -p 'D:\a\1\a/build' 'D:\a\1\a/install'
2021-02-08T14:11:21.1768120Z ##[section]Finishing: Configure build environment
2021-02-08T14:11:21.1803203Z ##[section]Starting: CMake configuration
2021-02-08T14:11:21.1926278Z ==============================================================================
2021-02-08T14:11:21.1926648Z Task         : Bash
2021-02-08T14:11:21.1926918Z Description  : Run a Bash script on macOS, Linux, or Windows
2021-02-08T14:11:21.1927219Z Version      : 3.179.0
2021-02-08T14:11:21.1927452Z Author       : Microsoft Corporation
2021-02-08T14:11:21.1927818Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/bash
2021-02-08T14:11:21.1928233Z ==============================================================================
2021-02-08T14:11:21.3624544Z Generating script.
2021-02-08T14:11:21.3750109Z [command]"C:\Program Files\Git\bin\bash.exe" --noprofile --norc -c pwd
2021-02-08T14:11:21.4086629Z /d/a/_temp
2021-02-08T14:11:21.4141513Z ========================== Starting Command Output ===========================
2021-02-08T14:11:21.4148159Z [command]"C:\Program Files\Git\bin\bash.exe" --noprofile --norc /d/a/_temp/2a9210c4-d566-4af1-9517-795b72030ff7.sh
2021-02-08T14:11:21.4449144Z + cd 'D:\a\1\a/build'
2021-02-08T14:11:21.4449893Z + source activate scipp-developer
2021-02-08T14:11:21.4462569Z ++ _CONDA_ROOT=C:/Miniconda
2021-02-08T14:11:21.4463212Z ++ . C:/Miniconda/etc/profile.d/conda.sh
2021-02-08T14:11:21.4602041Z +++ export 'CONDA_EXE=C:/Miniconda\Scripts\conda.exe'
2021-02-08T14:11:21.4602723Z +++ CONDA_EXE='C:/Miniconda\Scripts\conda.exe'
2021-02-08T14:11:21.4603337Z +++ export _CE_M=
2021-02-08T14:11:21.4604033Z +++ _CE_M=
2021-02-08T14:11:21.4604464Z +++ export _CE_CONDA=
2021-02-08T14:11:21.4604942Z +++ _CE_CONDA=
2021-02-08T14:11:21.4605479Z +++ export 'CONDA_PYTHON_EXE=C:/Miniconda\python.exe'
2021-02-08T14:11:21.4606084Z +++ CONDA_PYTHON_EXE='C:/Miniconda\python.exe'
2021-02-08T14:11:21.4611951Z +++ '[' -z '' ']'
2021-02-08T14:11:21.4612560Z +++ export CONDA_SHLVL=0
2021-02-08T14:11:21.4613051Z +++ CONDA_SHLVL=0
2021-02-08T14:11:21.4613536Z +++ '[' -n x ']'
2021-02-08T14:11:21.4614063Z +++ '[' -n x ']'
2021-02-08T14:11:21.4718173Z ++++ dirname 'C:/Miniconda\Scripts\conda.exe'
2021-02-08T14:11:21.5174578Z +++ PATH='C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:21.5179900Z +++ export PATH
2021-02-08T14:11:21.5180403Z +++ '[' -z '' ']'
2021-02-08T14:11:21.5180712Z +++ PS1=
2021-02-08T14:11:21.5181082Z ++ conda activate scipp-developer
2021-02-08T14:11:21.5181451Z ++ '[' 2 -lt 1 ']'
2021-02-08T14:11:21.5183840Z ++ local cmd=activate
2021-02-08T14:11:21.5198559Z ++ shift
2021-02-08T14:11:21.5212560Z ++ case "$cmd" in
2021-02-08T14:11:21.5213509Z ++ __conda_activate activate scipp-developer
2021-02-08T14:11:21.5216417Z ++ '[' -n '' ']'
2021-02-08T14:11:21.5216862Z ++ local cmd=activate
2021-02-08T14:11:21.5217261Z ++ shift
2021-02-08T14:11:21.5217638Z ++ local ask_conda
2021-02-08T14:11:21.5238338Z ++ CONDA_INTERNAL_OLDPATH='C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:21.5258353Z ++ __add_sys_prefix_to_path
2021-02-08T14:11:21.5259089Z ++ '[' -n '' ']'
2021-02-08T14:11:21.5320734Z +++ dirname 'C:/Miniconda\Scripts\conda.exe'
2021-02-08T14:11:21.5495702Z ++ SYSP='C:/Miniconda\Scripts'
2021-02-08T14:11:21.5574302Z +++ dirname 'C:/Miniconda\Scripts'
2021-02-08T14:11:21.5748317Z ++ SYSP=C:/Miniconda
2021-02-08T14:11:21.5754292Z ++ '[' -n x ']'
2021-02-08T14:11:21.5758812Z ++ PATH='C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:21.5768658Z ++ PATH='C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:21.5778828Z ++ PATH='C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:21.5789525Z ++ PATH='C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:21.5803661Z ++ PATH='C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:21.5813389Z ++ PATH='C:/Miniconda:C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:21.5819089Z ++ export PATH
2021-02-08T14:11:21.5832181Z +++ PS1=
2021-02-08T14:11:21.5832835Z +++ 'C:/Miniconda\Scripts\conda.exe' shell.posix activate scipp-developer
2021-02-08T14:11:22.5311046Z ++ ask_conda='PS1='\''(scipp-developer) '\''
2021-02-08T14:11:22.5320371Z export PATH='\''/c/Miniconda/envs/scipp-developer:/c/Miniconda/envs/scipp-developer/Library/mingw-w64/bin:/c/Miniconda/envs/scipp-developer/Library/usr/bin:/c/Miniconda/envs/scipp-developer/Library/bin:/c/Miniconda/envs/scipp-developer/Scripts:/c/Miniconda/envs/scipp-developer/bin:C:/Miniconda:C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda/Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/usr/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'\''
2021-02-08T14:11:22.5327920Z export CONDA_PREFIX='\''C:\Miniconda\envs\scipp-developer'\''
2021-02-08T14:11:22.5328559Z export CONDA_SHLVL='\''1'\''
2021-02-08T14:11:22.5329163Z export CONDA_DEFAULT_ENV='\''scipp-developer'\''
2021-02-08T14:11:22.5329839Z export CONDA_PROMPT_MODIFIER='\''(scipp-developer) '\''
2021-02-08T14:11:22.5330503Z export CONDA_EXE='\''/c/Miniconda/Scripts/conda.exe'\''
2021-02-08T14:11:22.5331090Z export _CE_M='\'''\''
2021-02-08T14:11:22.5331628Z export _CE_CONDA='\'''\''
2021-02-08T14:11:22.5332459Z export CONDA_PYTHON_EXE='\''/c/Miniconda/python.exe'\'''
2021-02-08T14:11:22.5333439Z ++ rc=0
2021-02-08T14:11:22.5404617Z ++ PATH='C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:22.5412556Z ++ eval 'PS1='\''(scipp-developer) '\''
2021-02-08T14:11:22.5419319Z export PATH='\''/c/Miniconda/envs/scipp-developer:/c/Miniconda/envs/scipp-developer/Library/mingw-w64/bin:/c/Miniconda/envs/scipp-developer/Library/usr/bin:/c/Miniconda/envs/scipp-developer/Library/bin:/c/Miniconda/envs/scipp-developer/Scripts:/c/Miniconda/envs/scipp-developer/bin:C:/Miniconda:C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda/Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/usr/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'\''
2021-02-08T14:11:22.5426175Z export CONDA_PREFIX='\''C:\Miniconda\envs\scipp-developer'\''
2021-02-08T14:11:22.5426690Z export CONDA_SHLVL='\''1'\''
2021-02-08T14:11:22.5427116Z export CONDA_DEFAULT_ENV='\''scipp-developer'\''
2021-02-08T14:11:22.5427619Z export CONDA_PROMPT_MODIFIER='\''(scipp-developer) '\''
2021-02-08T14:11:22.5428319Z export CONDA_EXE='\''/c/Miniconda/Scripts/conda.exe'\''
2021-02-08T14:11:22.5428722Z export _CE_M='\'''\''
2021-02-08T14:11:22.5429074Z export _CE_CONDA='\'''\''
2021-02-08T14:11:22.5429445Z export CONDA_PYTHON_EXE='\''/c/Miniconda/python.exe'\'''
2021-02-08T14:11:22.5429862Z +++ PS1='(scipp-developer) '
2021-02-08T14:11:22.5436064Z +++ export 'PATH=/c/Miniconda/envs/scipp-developer:/c/Miniconda/envs/scipp-developer/Library/mingw-w64/bin:/c/Miniconda/envs/scipp-developer/Library/usr/bin:/c/Miniconda/envs/scipp-developer/Library/bin:/c/Miniconda/envs/scipp-developer/Scripts:/c/Miniconda/envs/scipp-developer/bin:C:/Miniconda:C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda/Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/usr/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:22.5447640Z +++ PATH='/c/Miniconda/envs/scipp-developer:/c/Miniconda/envs/scipp-developer/Library/mingw-w64/bin:/c/Miniconda/envs/scipp-developer/Library/usr/bin:/c/Miniconda/envs/scipp-developer/Library/bin:/c/Miniconda/envs/scipp-developer/Scripts:/c/Miniconda/envs/scipp-developer/bin:C:/Miniconda:C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda/Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/usr/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:11:22.5453467Z +++ export 'CONDA_PREFIX=C:\Miniconda\envs\scipp-developer'
2021-02-08T14:11:22.5454078Z +++ CONDA_PREFIX='C:\Miniconda\envs\scipp-developer'
2021-02-08T14:11:22.5454515Z +++ export CONDA_SHLVL=1
2021-02-08T14:11:22.5454850Z +++ CONDA_SHLVL=1
2021-02-08T14:11:22.5455173Z +++ export CONDA_DEFAULT_ENV=scipp-developer
2021-02-08T14:11:22.5455569Z +++ CONDA_DEFAULT_ENV=scipp-developer
2021-02-08T14:11:22.5455981Z +++ export 'CONDA_PROMPT_MODIFIER=(scipp-developer) '
2021-02-08T14:11:22.5456360Z +++ CONDA_PROMPT_MODIFIER='(scipp-developer) '
2021-02-08T14:11:22.5456780Z +++ export CONDA_EXE=/c/Miniconda/Scripts/conda.exe
2021-02-08T14:11:22.5457193Z +++ CONDA_EXE=/c/Miniconda/Scripts/conda.exe
2021-02-08T14:11:22.5457558Z +++ export _CE_M=
2021-02-08T14:11:22.5457821Z +++ _CE_M=
2021-02-08T14:11:22.5458131Z +++ export _CE_CONDA=
2021-02-08T14:11:22.5458487Z +++ _CE_CONDA=
2021-02-08T14:11:22.5458811Z +++ export CONDA_PYTHON_EXE=/c/Miniconda/python.exe
2021-02-08T14:11:22.5459228Z +++ CONDA_PYTHON_EXE=/c/Miniconda/python.exe
2021-02-08T14:11:22.5459596Z ++ '[' 0 '!=' 0 ']'
2021-02-08T14:11:22.5459873Z ++ __conda_hashr
2021-02-08T14:11:22.5460192Z ++ '[' -n '' ']'
2021-02-08T14:11:22.5460505Z ++ '[' -n '' ']'
2021-02-08T14:11:22.5460811Z ++ hash -r
2021-02-08T14:11:22.5461076Z ++ command -v python
2021-02-08T14:11:22.5461743Z + cmake -G 'Visual Studio 16 2019' -A x64 -DCMAKE_CXX_STANDARD=20 -DPYTHON_EXECUTABLE=/c/Miniconda/envs/scipp-developer/python '-DCMAKE_INSTALL_PREFIX=D:\a\1\a/install' -DCMAKE_BUILD_TYPE=Release 'D:\a\1\s'
2021-02-08T14:11:48.4399026Z -- The C compiler identification is MSVC 19.28.29336.0
2021-02-08T14:11:50.6122933Z -- The CXX compiler identification is MSVC 19.28.29336.0
2021-02-08T14:11:51.0249899Z -- Detecting C compiler ABI info
2021-02-08T14:11:52.4680659Z -- Detecting C compiler ABI info - done
2021-02-08T14:11:52.4700758Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.28.29333/bin/Hostx64/x64/cl.exe - skipped
2021-02-08T14:11:52.4708512Z -- Detecting C compile features
2021-02-08T14:11:52.5091577Z -- Detecting C compile features - done
2021-02-08T14:11:52.5275489Z -- Detecting CXX compiler ABI info
2021-02-08T14:11:53.6696750Z -- Detecting CXX compiler ABI info - done
2021-02-08T14:11:53.6716087Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.28.29333/bin/Hostx64/x64/cl.exe - skipped
2021-02-08T14:11:53.6718428Z -- Detecting CXX compile features
2021-02-08T14:11:53.6725140Z -- Detecting CXX compile features - done
2021-02-08T14:11:53.7030783Z -- CLCACHE_PATH not specified. Not enabled.
2021-02-08T14:11:53.7232102Z CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
2021-02-08T14:11:53.7232862Z   Compatibility with CMake < 2.8.12 will be removed from a future version of
2021-02-08T14:11:53.7233317Z   CMake.
2021-02-08T14:11:53.7233563Z 
2021-02-08T14:11:53.7234163Z   Update the VERSION argument <min> value or use a ...<max> suffix to tell
2021-02-08T14:11:53.7234805Z   CMake that the project does not need compatibility with older versions.
2021-02-08T14:11:53.7237247Z 
2021-02-08T14:11:53.7237505Z 
2021-02-08T14:11:54.3888893Z -- Found Git: C:/Program Files/Git/mingw64/bin/git.exe (found version "2.30.0.windows.2") 
2021-02-08T14:11:54.5793182Z -- Configuring done
2021-02-08T14:11:54.6005158Z -- Generating done
2021-02-08T14:11:54.6016376Z -- Build files have been written to: D:/a/1/a/build/googletest-download
2021-02-08T14:11:54.7768116Z Microsoft (R) Build Engine version 16.8.3+39993bd9d for .NET Framework
2021-02-08T14:11:54.7769584Z Copyright (C) Microsoft Corporation. All rights reserved.
2021-02-08T14:11:54.7770206Z 
2021-02-08T14:11:55.3845060Z   Checking Build System
2021-02-08T14:11:55.6037343Z   Creating directories for 'googletest'
2021-02-08T14:11:55.7391125Z   Performing download step (git clone) for 'googletest'
2021-02-08T14:11:55.9655361Z   Cloning into 'googletest-src'...
2021-02-08T14:12:01.1066111Z   Note: switching to '870a6b55'.
2021-02-08T14:12:01.1067535Z   
2021-02-08T14:12:01.1070873Z   You are in 'detached HEAD' state. You can look around, make experimental
2021-02-08T14:12:01.1072476Z   changes and commit them, and you can discard any commits you make in this
2021-02-08T14:12:01.1073211Z   state without impacting any branches by switching back to a branch.
2021-02-08T14:12:01.1073711Z   
2021-02-08T14:12:01.1074211Z   If you want to create a new branch to retain commits you create, you may
2021-02-08T14:12:01.1074832Z   do so (now or later) by using -c with the switch command. Example:
2021-02-08T14:12:01.1075305Z   
2021-02-08T14:12:01.1075744Z     git switch -c <new-branch-name>
2021-02-08T14:12:01.1076184Z   
2021-02-08T14:12:01.1076627Z   Or undo this operation with:
2021-02-08T14:12:01.1077028Z   
2021-02-08T14:12:01.1077441Z     git switch -
2021-02-08T14:12:01.1077853Z   
2021-02-08T14:12:01.1078352Z   Turn off this advice by setting config variable advice.detachedHead to false
2021-02-08T14:12:01.1078819Z   
2021-02-08T14:12:01.1079254Z   HEAD is now at 870a6b55 Fix a typo
2021-02-08T14:12:02.5605069Z   Performing update step for 'googletest'
2021-02-08T14:12:02.6893830Z   No patch step for 'googletest'
2021-02-08T14:12:02.7221267Z   No configure step for 'googletest'
2021-02-08T14:12:02.7574737Z   No build step for 'googletest'
2021-02-08T14:12:02.7911021Z   No install step for 'googletest'
2021-02-08T14:12:02.8262671Z   No test step for 'googletest'
2021-02-08T14:12:02.8596616Z   Completed 'googletest'
2021-02-08T14:12:02.9464670Z   Building Custom Rule D:/a/1/a/build/googletest-download/CMakeLists.txt
2021-02-08T14:12:03.0133012Z   Building Custom Rule D:/a/1/a/build/googletest-download/CMakeLists.txt
2021-02-08T14:12:03.0760319Z CMake Deprecation Warning at D:/a/1/a/build/googletest-src/CMakeLists.txt:4 (cmake_minimum_required):
2021-02-08T14:12:03.0761411Z   Compatibility with CMake < 2.8.12 will be removed from a future version of
2021-02-08T14:12:03.0761903Z   CMake.
2021-02-08T14:12:03.0762344Z 
2021-02-08T14:12:03.0762819Z   Update the VERSION argument <min> value or use a ...<max> suffix to tell
2021-02-08T14:12:03.0763426Z   CMake that the project does not need compatibility with older versions.
2021-02-08T14:12:03.0763825Z 
2021-02-08T14:12:03.0764026Z 
2021-02-08T14:12:03.1098797Z CMake Deprecation Warning at D:/a/1/a/build/googletest-src/googlemock/CMakeLists.txt:45 (cmake_minimum_required):
2021-02-08T14:12:03.1100413Z   Compatibility with CMake < 2.8.12 will be removed from a future version of
2021-02-08T14:12:03.1101374Z   CMake.
2021-02-08T14:12:03.1101824Z 
2021-02-08T14:12:03.1102702Z   Update the VERSION argument <min> value or use a ...<max> suffix to tell
2021-02-08T14:12:03.1103978Z   CMake that the project does not need compatibility with older versions.
2021-02-08T14:12:03.1104561Z 
2021-02-08T14:12:03.1104750Z 
2021-02-08T14:12:03.1119512Z CMake Deprecation Warning at D:/a/1/a/build/googletest-src/googletest/CMakeLists.txt:56 (cmake_minimum_required):
2021-02-08T14:12:03.1120542Z   Compatibility with CMake < 2.8.12 will be removed from a future version of
2021-02-08T14:12:03.1121215Z   CMake.
2021-02-08T14:12:03.1121508Z 
2021-02-08T14:12:03.1122145Z   Update the VERSION argument <min> value or use a ...<max> suffix to tell
2021-02-08T14:12:03.1122938Z   CMake that the project does not need compatibility with older versions.
2021-02-08T14:12:03.1123369Z 
2021-02-08T14:12:03.1123758Z 
2021-02-08T14:12:03.1732620Z -- Found PythonInterp: C:/Miniconda/envs/scipp-developer/python (found version "3.7.9") 
2021-02-08T14:12:03.2205267Z -- Looking for pthread.h
2021-02-08T14:12:06.3916730Z -- Looking for pthread.h - not found
2021-02-08T14:12:06.3939516Z -- Found Threads: TRUE  
2021-02-08T14:12:06.5091553Z -- Found GMOCK: D:/a/1/a/build/googletest-src/googlemock/include  
2021-02-08T14:12:06.5096035Z -- Found GTEST: D:/a/1/a/build/googletest-src/googletest/include  
2021-02-08T14:12:07.1396557Z -- Configuring done
2021-02-08T14:12:07.1616766Z -- Generating done
2021-02-08T14:12:07.1631721Z -- Build files have been written to: D:/a/1/a/build/boost-download
2021-02-08T14:12:07.3057070Z Microsoft (R) Build Engine version 16.8.3+39993bd9d for .NET Framework
2021-02-08T14:12:07.3058424Z Copyright (C) Microsoft Corporation. All rights reserved.
2021-02-08T14:12:07.3059034Z 
2021-02-08T14:12:07.7648438Z   Checking Build System
2021-02-08T14:12:07.9993082Z   Creating directories for 'boost'
2021-02-08T14:12:08.1409244Z   Performing download step (download, verify and extract) for 'boost'
2021-02-08T14:12:08.1582574Z   -- Downloading...
2021-02-08T14:12:08.1583507Z      dst='D:/a/1/a/build/boost-download/boost-prefix/src/boost_1_69_0.tar.gz'
2021-02-08T14:12:08.1584069Z      timeout='none'
2021-02-08T14:12:08.1584553Z      inactivity timeout='none'
2021-02-08T14:12:08.1585052Z   -- Using src='https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.tar.gz'
2021-02-08T14:12:08.4055663Z   -- [download 0% complete]
2021-02-08T14:12:08.4134193Z   -- [download 1% complete]
2021-02-08T14:12:08.4302719Z   -- [download 2% complete]
2021-02-08T14:12:08.4573333Z   -- [download 3% complete]
2021-02-08T14:12:08.4924168Z   -- [download 4% complete]
2021-02-08T14:12:08.5098227Z   -- [download 5% complete]
2021-02-08T14:12:08.5306207Z   -- [download 6% complete]
2021-02-08T14:12:08.5618376Z   -- [download 7% complete]
2021-02-08T14:12:08.5810465Z   -- [download 8% complete]
2021-02-08T14:12:08.5913370Z   -- [download 9% complete]
2021-02-08T14:12:08.6161694Z   -- [download 10% complete]
2021-02-08T14:12:08.6376070Z   -- [download 11% complete]
2021-02-08T14:12:08.6549827Z   -- [download 12% complete]
2021-02-08T14:12:08.6754679Z   -- [download 13% complete]
2021-02-08T14:12:08.6894026Z   -- [download 14% complete]
2021-02-08T14:12:08.7085660Z   -- [download 15% complete]
2021-02-08T14:12:08.7340104Z   -- [download 16% complete]
2021-02-08T14:12:08.7608114Z   -- [download 17% complete]
2021-02-08T14:12:08.7770435Z   -- [download 18% complete]
2021-02-08T14:12:08.8036627Z   -- [download 19% complete]
2021-02-08T14:12:08.8472567Z   -- [download 20% complete]
2021-02-08T14:12:08.8729623Z   -- [download 21% complete]
2021-02-08T14:12:08.8995027Z   -- [download 22% complete]
2021-02-08T14:12:08.9319653Z   -- [download 23% complete]
2021-02-08T14:12:08.9605114Z   -- [download 24% complete]
2021-02-08T14:12:09.0021314Z   -- [download 25% complete]
2021-02-08T14:12:09.0280157Z   -- [download 26% complete]
2021-02-08T14:12:09.0647462Z   -- [download 27% complete]
2021-02-08T14:12:09.0918871Z   -- [download 28% complete]
2021-02-08T14:12:09.1278337Z   -- [download 29% complete]
2021-02-08T14:12:09.1569042Z   -- [download 30% complete]
2021-02-08T14:12:09.1833686Z   -- [download 31% complete]
2021-02-08T14:12:09.2009889Z   -- [download 32% complete]
2021-02-08T14:12:09.2294865Z   -- [download 33% complete]
2021-02-08T14:12:09.2512272Z   -- [download 34% complete]
2021-02-08T14:12:09.2906684Z   -- [download 35% complete]
2021-02-08T14:12:09.3326264Z   -- [download 36% complete]
2021-02-08T14:12:09.3594915Z   -- [download 37% complete]
2021-02-08T14:12:09.3810736Z   -- [download 38% complete]
2021-02-08T14:12:09.4170743Z   -- [download 39% complete]
2021-02-08T14:12:09.4398551Z   -- [download 40% complete]
2021-02-08T14:12:09.4609731Z   -- [download 41% complete]
2021-02-08T14:12:09.5070380Z   -- [download 42% complete]
2021-02-08T14:12:09.5410323Z   -- [download 43% complete]
2021-02-08T14:12:09.5800201Z   -- [download 44% complete]
2021-02-08T14:12:09.6013535Z   -- [download 45% complete]
2021-02-08T14:12:09.6369894Z   -- [download 46% complete]
2021-02-08T14:12:09.6648456Z   -- [download 47% complete]
2021-02-08T14:12:09.6934558Z   -- [download 48% complete]
2021-02-08T14:12:09.7219154Z   -- [download 49% complete]
2021-02-08T14:12:09.7413303Z   -- [download 50% complete]
2021-02-08T14:12:09.7721930Z   -- [download 51% complete]
2021-02-08T14:12:09.7978695Z   -- [download 52% complete]
2021-02-08T14:12:09.8164085Z   -- [download 53% complete]
2021-02-08T14:12:09.8367732Z   -- [download 54% complete]
2021-02-08T14:12:09.8628462Z   -- [download 55% complete]
2021-02-08T14:12:09.8864916Z   -- [download 56% complete]
2021-02-08T14:12:09.9076090Z   -- [download 57% complete]
2021-02-08T14:12:09.9265958Z   -- [download 58% complete]
2021-02-08T14:12:09.9560540Z   -- [download 59% complete]
2021-02-08T14:12:09.9960065Z   -- [download 60% complete]
2021-02-08T14:12:10.0262882Z   -- [download 61% complete]
2021-02-08T14:12:10.0578288Z   -- [download 62% complete]
2021-02-08T14:12:10.0775588Z   -- [download 63% complete]
2021-02-08T14:12:10.1002364Z   -- [download 64% complete]
2021-02-08T14:12:10.1183962Z   -- [download 65% complete]
2021-02-08T14:12:10.1423592Z   -- [download 66% complete]
2021-02-08T14:12:10.1634679Z   -- [download 67% complete]
2021-02-08T14:12:10.1952867Z   -- [download 68% complete]
2021-02-08T14:12:10.2190201Z   -- [download 69% complete]
2021-02-08T14:12:10.2516285Z   -- [download 70% complete]
2021-02-08T14:12:10.2838651Z   -- [download 71% complete]
2021-02-08T14:12:10.3113659Z   -- [download 72% complete]
2021-02-08T14:12:10.3364862Z   -- [download 73% complete]
2021-02-08T14:12:10.3737595Z   -- [download 74% complete]
2021-02-08T14:12:10.4143606Z   -- [download 75% complete]
2021-02-08T14:12:10.4545651Z   -- [download 76% complete]
2021-02-08T14:12:10.4777391Z   -- [download 77% complete]
2021-02-08T14:12:10.5238871Z   -- [download 78% complete]
2021-02-08T14:12:10.5436815Z   -- [download 79% complete]
2021-02-08T14:12:10.5731813Z   -- [download 80% complete]
2021-02-08T14:12:10.5909998Z   -- [download 81% complete]
2021-02-08T14:12:10.6093956Z   -- [download 82% complete]
2021-02-08T14:12:10.6378468Z   -- [download 83% complete]
2021-02-08T14:12:10.6572124Z   -- [download 84% complete]
2021-02-08T14:12:10.6728607Z   -- [download 85% complete]
2021-02-08T14:12:10.6934907Z   -- [download 86% complete]
2021-02-08T14:12:10.7114103Z   -- [download 87% complete]
2021-02-08T14:12:10.7298550Z   -- [download 88% complete]
2021-02-08T14:12:10.7605590Z   -- [download 89% complete]
2021-02-08T14:12:10.7928442Z   -- [download 90% complete]
2021-02-08T14:12:10.8146908Z   -- [download 91% complete]
2021-02-08T14:12:10.8389371Z   -- [download 92% complete]
2021-02-08T14:12:10.8669143Z   -- [download 93% complete]
2021-02-08T14:12:10.8876596Z   -- [download 94% complete]
2021-02-08T14:12:11.6148961Z   -- [download 95% complete]
2021-02-08T14:12:11.6149424Z   -- [download 96% complete]
2021-02-08T14:12:11.6149802Z   -- [download 97% complete]
2021-02-08T14:12:11.6150181Z   -- [download 98% complete]
2021-02-08T14:12:11.6150540Z   -- [download 99% complete]
2021-02-08T14:12:11.6151596Z   -- [download 100% complete]
2021-02-08T14:12:11.6152285Z   -- verifying file...
2021-02-08T14:12:11.6153181Z          file='D:/a/1/a/build/boost-download/boost-prefix/src/boost_1_69_0.tar.gz'
2021-02-08T14:12:11.6153963Z   -- Downloading... done
2021-02-08T14:12:11.6154582Z   -- extracting...
2021-02-08T14:12:11.6155356Z        src='D:/a/1/a/build/boost-download/boost-prefix/src/boost_1_69_0.tar.gz'
2021-02-08T14:12:11.6156210Z        dst='D:/a/1/a/build/boost-src'
2021-02-08T14:12:11.6156954Z   -- extracting... [tar xfz]
2021-02-08T14:12:36.6484835Z   -- extracting... [analysis]
2021-02-08T14:12:36.6489986Z   -- extracting... [rename]
2021-02-08T14:12:36.7268317Z   -- extracting... [clean up]
2021-02-08T14:12:36.7271143Z   -- extracting... done
2021-02-08T14:12:36.7514999Z   No update step for 'boost'
2021-02-08T14:12:36.7934266Z   No patch step for 'boost'
2021-02-08T14:12:37.1423662Z   No configure step for 'boost'
2021-02-08T14:12:37.1789150Z   No build step for 'boost'
2021-02-08T14:12:37.2135352Z   Performing install step for 'boost'
2021-02-08T14:12:46.7584948Z   No test step for 'boost'
2021-02-08T14:12:46.7934538Z   Completed 'boost'
2021-02-08T14:12:46.8748759Z   Building Custom Rule D:/a/1/a/build/boost-download/CMakeLists.txt
2021-02-08T14:12:46.9511886Z   Building Custom Rule D:/a/1/a/build/boost-download/CMakeLists.txt
2021-02-08T14:12:47.0270353Z -- Install configuration: "Release"
2021-02-08T14:12:47.0479760Z CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
2021-02-08T14:12:47.0480747Z   Compatibility with CMake < 2.8.12 will be removed from a future version of
2021-02-08T14:12:47.0481261Z   CMake.
2021-02-08T14:12:47.0481452Z 
2021-02-08T14:12:47.0481818Z   Update the VERSION argument <min> value or use a ...<max> suffix to tell
2021-02-08T14:12:47.0482435Z   CMake that the project does not need compatibility with older versions.
2021-02-08T14:12:47.0482732Z 
2021-02-08T14:12:47.0482905Z 
2021-02-08T14:12:47.8966774Z -- Found Git: C:/Program Files/Git/mingw64/bin/git.exe (found version "2.30.0.windows.2") 
2021-02-08T14:12:47.9734261Z -- Configuring done
2021-02-08T14:12:47.9972232Z -- Generating done
2021-02-08T14:12:47.9986921Z -- Build files have been written to: D:/a/1/a/build/llnl-units-download
2021-02-08T14:12:48.1376256Z Microsoft (R) Build Engine version 16.8.3+39993bd9d for .NET Framework
2021-02-08T14:12:48.1377707Z Copyright (C) Microsoft Corporation. All rights reserved.
2021-02-08T14:12:48.1378355Z 
2021-02-08T14:12:48.5523108Z   Checking Build System
2021-02-08T14:12:48.7554404Z   Creating directories for 'llnl-units'
2021-02-08T14:12:48.8788233Z   Performing download step (git clone) for 'llnl-units'
2021-02-08T14:12:49.1833199Z   Cloning into 'llnl-units-src'...
2021-02-08T14:12:51.2719286Z   Note: switching to 'origin/dev'.
2021-02-08T14:12:51.2720266Z   
2021-02-08T14:12:51.2721794Z   You are in 'detached HEAD' state. You can look around, make experimental
2021-02-08T14:12:51.2722901Z   changes and commit them, and you can discard any commits you make in this
2021-02-08T14:12:51.2723565Z   state without impacting any branches by switching back to a branch.
2021-02-08T14:12:51.2724108Z   
2021-02-08T14:12:51.2724657Z   If you want to create a new branch to retain commits you create, you may
2021-02-08T14:12:51.2725556Z   do so (now or later) by using -c with the switch command. Example:
2021-02-08T14:12:51.2726148Z   
2021-02-08T14:12:51.2726605Z     git switch -c <new-branch-name>
2021-02-08T14:12:51.2727079Z   
2021-02-08T14:12:51.2727560Z   Or undo this operation with:
2021-02-08T14:12:51.2728045Z   
2021-02-08T14:12:51.2728466Z     git switch -
2021-02-08T14:12:51.2728909Z   
2021-02-08T14:12:51.2729457Z   Turn off this advice by setting config variable advice.detachedHead to false
2021-02-08T14:12:51.2730102Z   
2021-02-08T14:12:51.2730777Z   HEAD is now at 0d9d7ae Add cmake option to change top level namespace name
2021-02-08T14:12:51.9058781Z   Performing update step for 'llnl-units'
2021-02-08T14:12:51.9571627Z   fatal: ambiguous argument 'dev': unknown revision or path not in the working tree.
2021-02-08T14:12:51.9574111Z   Use '--' to separate paths from revisions, like this:
2021-02-08T14:12:51.9575080Z   'git <command> [<revision>...] -- [<file>...]'
2021-02-08T14:12:53.5116717Z   No patch step for 'llnl-units'
2021-02-08T14:12:53.5450882Z   No configure step for 'llnl-units'
2021-02-08T14:12:53.5796986Z   No build step for 'llnl-units'
2021-02-08T14:12:53.6138588Z   No install step for 'llnl-units'
2021-02-08T14:12:53.6481942Z   No test step for 'llnl-units'
2021-02-08T14:12:53.6822379Z   Completed 'llnl-units'
2021-02-08T14:12:53.7645778Z   Building Custom Rule D:/a/1/a/build/llnl-units-download/CMakeLists.txt
2021-02-08T14:12:53.8313294Z   Building Custom Rule D:/a/1/a/build/llnl-units-download/CMakeLists.txt
2021-02-08T14:12:54.9459455Z -- Configuring done
2021-02-08T14:12:54.9666915Z -- Generating done
2021-02-08T14:12:54.9685880Z -- Build files have been written to: D:/a/1/a/build/Eigen-download
2021-02-08T14:12:55.0988019Z Microsoft (R) Build Engine version 16.8.3+39993bd9d for .NET Framework
2021-02-08T14:12:55.0989389Z Copyright (C) Microsoft Corporation. All rights reserved.
2021-02-08T14:12:55.0990027Z 
2021-02-08T14:12:55.5184221Z   Checking Build System
2021-02-08T14:12:55.7443245Z   Creating directories for 'Eigen'
2021-02-08T14:12:55.9087542Z   Performing download step (download, verify and extract) for 'Eigen'
2021-02-08T14:12:55.9271965Z   -- Downloading...
2021-02-08T14:12:55.9272723Z      dst='D:/a/1/a/build/Eigen-download/Eigen-prefix/src/3.3.7.tar.gz'
2021-02-08T14:12:55.9273255Z      timeout='none'
2021-02-08T14:12:55.9273762Z      inactivity timeout='none'
2021-02-08T14:12:55.9274305Z   -- Using src='https://github.com/eigenteam/eigen-git-mirror/archive/3.3.7.tar.gz'
2021-02-08T14:12:55.9996646Z   -- [download 100% complete]
2021-02-08T14:12:56.1854313Z   -- [download 1% complete]
2021-02-08T14:12:56.1949842Z   -- [download 2% complete]
2021-02-08T14:12:56.2048474Z   -- [download 5% complete]
2021-02-08T14:12:56.2150799Z   -- [download 7% complete]
2021-02-08T14:12:56.2153441Z   -- [download 10% complete]
2021-02-08T14:12:56.2250235Z   -- [download 14% complete]
2021-02-08T14:12:56.2259296Z   -- [download 20% complete]
2021-02-08T14:12:56.2354021Z   -- [download 30% complete]
2021-02-08T14:12:56.2356665Z   -- [download 34% complete]
2021-02-08T14:12:56.2365503Z   -- [download 41% complete]
2021-02-08T14:12:56.2442778Z   -- [download 42% complete]
2021-02-08T14:12:56.2446546Z   -- [download 45% complete]
2021-02-08T14:12:56.2458753Z   -- [download 53% complete]
2021-02-08T14:12:56.2463394Z   -- [download 61% complete]
2021-02-08T14:12:56.2471840Z   -- [download 70% complete]
2021-02-08T14:12:56.2482139Z   -- [download 84% complete]
2021-02-08T14:12:56.2548526Z   -- [download 90% complete]
2021-02-08T14:12:56.2644573Z   -- [download 91% complete]
2021-02-08T14:12:56.2673075Z   -- [download 98% complete]
2021-02-08T14:12:56.2673833Z   -- [download 100% complete]
2021-02-08T14:12:56.2683629Z   -- verifying file...
2021-02-08T14:12:56.2684440Z          file='D:/a/1/a/build/Eigen-download/Eigen-prefix/src/3.3.7.tar.gz'
2021-02-08T14:12:56.2757853Z   -- Downloading... done
2021-02-08T14:12:56.3118364Z   -- extracting...
2021-02-08T14:12:56.3119076Z        src='D:/a/1/a/build/Eigen-download/Eigen-prefix/src/3.3.7.tar.gz'
2021-02-08T14:12:56.3121527Z        dst='D:/a/1/a/build/Eigen-src'
2021-02-08T14:12:56.3122242Z   -- extracting... [tar xfz]
2021-02-08T14:12:56.7558961Z   -- extracting... [analysis]
2021-02-08T14:12:56.7568060Z   -- extracting... [rename]
2021-02-08T14:12:56.7599209Z   -- extracting... [clean up]
2021-02-08T14:12:56.7601170Z   -- extracting... done
2021-02-08T14:12:56.7835911Z   No update step for 'Eigen'
2021-02-08T14:12:56.8183054Z   No patch step for 'Eigen'
2021-02-08T14:12:56.8517729Z   No configure step for 'Eigen'
2021-02-08T14:12:56.8883144Z   No build step for 'Eigen'
2021-02-08T14:12:56.9229781Z   No install step for 'Eigen'
2021-02-08T14:12:56.9569846Z   No test step for 'Eigen'
2021-02-08T14:12:56.9931004Z   Completed 'Eigen'
2021-02-08T14:12:57.0775888Z   Building Custom Rule D:/a/1/a/build/Eigen-download/CMakeLists.txt
2021-02-08T14:12:57.3104118Z   Building Custom Rule D:/a/1/a/build/Eigen-download/CMakeLists.txt
2021-02-08T14:12:57.9954631Z -- Found Git: C:/Program Files/Git/mingw64/bin/git.exe (found version "2.30.0.windows.2") 
2021-02-08T14:12:58.0609942Z -- Configuring done
2021-02-08T14:12:58.0812094Z -- Generating done
2021-02-08T14:12:58.0824139Z -- Build files have been written to: D:/a/1/a/build/pybind11-download
2021-02-08T14:12:58.2207361Z Microsoft (R) Build Engine version 16.8.3+39993bd9d for .NET Framework
2021-02-08T14:12:58.2208790Z Copyright (C) Microsoft Corporation. All rights reserved.
2021-02-08T14:12:58.2209421Z 
2021-02-08T14:12:58.7012036Z   Checking Build System
2021-02-08T14:12:58.9199517Z   Creating directories for 'pybind11'
2021-02-08T14:12:59.0562650Z   Performing download step (git clone) for 'pybind11'
2021-02-08T14:12:59.1096968Z   Cloning into 'pybind11-src'...
2021-02-08T14:13:01.5891802Z   Note: switching to 'v2.6.2'.
2021-02-08T14:13:01.5893183Z   
2021-02-08T14:13:01.5895247Z   You are in 'detached HEAD' state. You can look around, make experimental
2021-02-08T14:13:01.5896259Z   changes and commit them, and you can discard any commits you make in this
2021-02-08T14:13:01.5896928Z   state without impacting any branches by switching back to a branch.
2021-02-08T14:13:01.5897552Z   
2021-02-08T14:13:01.5898050Z   If you want to create a new branch to retain commits you create, you may
2021-02-08T14:13:01.5898724Z   do so (now or later) by using -c with the switch command. Example:
2021-02-08T14:13:01.5899222Z   
2021-02-08T14:13:01.5899639Z     git switch -c <new-branch-name>
2021-02-08T14:13:01.5900051Z   
2021-02-08T14:13:01.5900449Z   Or undo this operation with:
2021-02-08T14:13:01.5900870Z   
2021-02-08T14:13:01.5901260Z     git switch -
2021-02-08T14:13:01.5901648Z   
2021-02-08T14:13:01.5902104Z   Turn off this advice by setting config variable advice.detachedHead to false
2021-02-08T14:13:01.5902579Z   
2021-02-08T14:13:01.5903062Z   HEAD is now at 8de7772 chore: prepare for the 2.6.2 release (#2821)
2021-02-08T14:13:02.1107479Z   Performing update step for 'pybind11'
2021-02-08T14:13:02.1698762Z   No patch step for 'pybind11'
2021-02-08T14:13:02.2022510Z   No configure step for 'pybind11'
2021-02-08T14:13:02.2371683Z   No build step for 'pybind11'
2021-02-08T14:13:02.2701124Z   No install step for 'pybind11'
2021-02-08T14:13:02.3048589Z   No test step for 'pybind11'
2021-02-08T14:13:02.3371897Z   Completed 'pybind11'
2021-02-08T14:13:02.4184394Z   Building Custom Rule D:/a/1/a/build/pybind11-download/CMakeLists.txt
2021-02-08T14:13:02.4884580Z   Building Custom Rule D:/a/1/a/build/pybind11-download/CMakeLists.txt
2021-02-08T14:13:02.5535214Z -- pybind11 v2.6.2 
2021-02-08T14:13:02.6973117Z -- Found PythonLibs: C:/Miniconda/envs/scipp-developer/libs/python37.lib
2021-02-08T14:13:02.7317128Z -- Performing Test HAS_MSVC_GL_LTCG
2021-02-08T14:13:04.0287641Z -- Performing Test HAS_MSVC_GL_LTCG - Success
2021-02-08T14:13:04.6243944Z -- Found Git: C:/Program Files/Git/mingw64/bin/git.exe (found version "2.30.0.windows.2") 
2021-02-08T14:13:04.6941858Z -- Configuring done
2021-02-08T14:13:04.7173654Z -- Generating done
2021-02-08T14:13:04.7186844Z -- Build files have been written to: D:/a/1/a/build/googlebenchmark-download
2021-02-08T14:13:04.8810463Z Microsoft (R) Build Engine version 16.8.3+39993bd9d for .NET Framework
2021-02-08T14:13:04.8861199Z Copyright (C) Microsoft Corporation. All rights reserved.
2021-02-08T14:13:04.9245353Z 
2021-02-08T14:13:05.2996632Z   Checking Build System
2021-02-08T14:13:05.5290483Z   Creating directories for 'googlebenchmark'
2021-02-08T14:13:05.6595611Z   Performing download step (git clone) for 'googlebenchmark'
2021-02-08T14:13:05.7082559Z   Cloning into 'googlebenchmark-src'...
2021-02-08T14:13:10.2905211Z   Already on 'master'
2021-02-08T14:13:10.2908743Z   Your branch is up to date with 'origin/master'.
2021-02-08T14:13:10.8118093Z   Performing update step for 'googlebenchmark'
2021-02-08T14:13:13.1770382Z   No patch step for 'googlebenchmark'
2021-02-08T14:13:13.2107310Z   No configure step for 'googlebenchmark'
2021-02-08T14:13:13.2456587Z   No build step for 'googlebenchmark'
2021-02-08T14:13:13.2808593Z   No install step for 'googlebenchmark'
2021-02-08T14:13:13.3164350Z   No test step for 'googlebenchmark'
2021-02-08T14:13:13.3509558Z   Completed 'googlebenchmark'
2021-02-08T14:13:13.4331956Z   Building Custom Rule D:/a/1/a/build/googlebenchmark-download/CMakeLists.txt
2021-02-08T14:13:13.5067204Z   Building Custom Rule D:/a/1/a/build/googlebenchmark-download/CMakeLists.txt
2021-02-08T14:13:13.6187402Z -- Found Git: C:/Program Files/Git/mingw64/bin/git.exe (found version "2.30.0.windows.2") 
2021-02-08T14:13:13.6604089Z -- git Version: v1.5.2-8df87f6c
2021-02-08T14:13:13.6604877Z -- Version: 1.5.2
2021-02-08T14:13:13.6616296Z -- Performing Test HAVE_STD_REGEX
2021-02-08T14:13:13.6616633Z -- Performing Test HAVE_STD_REGEX
2021-02-08T14:13:18.0487864Z -- Performing Test HAVE_STD_REGEX -- success
2021-02-08T14:13:18.0488770Z -- Performing Test HAVE_GNU_POSIX_REGEX
2021-02-08T14:13:18.0489287Z -- Performing Test HAVE_GNU_POSIX_REGEX
2021-02-08T14:13:18.8123677Z -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile
2021-02-08T14:13:18.8124741Z -- Performing Test HAVE_POSIX_REGEX
2021-02-08T14:13:18.8125214Z -- Performing Test HAVE_POSIX_REGEX
2021-02-08T14:13:19.4418180Z -- Performing Test HAVE_POSIX_REGEX -- failed to compile
2021-02-08T14:13:19.4418938Z -- Performing Test HAVE_STEADY_CLOCK
2021-02-08T14:13:19.4419394Z -- Performing Test HAVE_STEADY_CLOCK
2021-02-08T14:13:20.4968271Z -- Performing Test HAVE_STEADY_CLOCK -- success
2021-02-08T14:13:22.3505480Z -- Found Boost: D:/a/1/a/build/boost/include (found suitable version "1.69.0", minimum required is "1.67")  
2021-02-08T14:13:25.6887273Z -- IPO set to TRUE
2021-02-08T14:13:25.8253042Z -- Got version from Git: 0.5.0-133-g621be2ee6
2021-02-08T14:13:25.8282240Z Generating files for abs
2021-02-08T14:13:25.8334640Z Generating files for exp
2021-02-08T14:13:25.8367051Z Generating files for log
2021-02-08T14:13:25.8400955Z Generating files for log10
2021-02-08T14:13:25.8447693Z Generating files for reciprocal
2021-02-08T14:13:25.8495228Z Generating files for sqrt
2021-02-08T14:13:25.8560013Z Generating files for values
2021-02-08T14:13:25.8582874Z Generating files for variances
2021-02-08T14:13:25.8627644Z Generating files for sin
2021-02-08T14:13:25.8648934Z Generating files for cos
2021-02-08T14:13:25.8674122Z Generating files for tan
2021-02-08T14:13:25.8696754Z Generating files for asin
2021-02-08T14:13:25.8721280Z Generating files for acos
2021-02-08T14:13:25.8743124Z Generating files for atan
2021-02-08T14:13:25.8784697Z Generating files for isnan
2021-02-08T14:13:25.8820388Z Generating files for isinf
2021-02-08T14:13:25.8855756Z Generating files for isfinite
2021-02-08T14:13:25.8894943Z Generating files for isposinf
2021-02-08T14:13:25.8933946Z Generating files for isneginf
2021-02-08T14:13:25.8990971Z Generating files for equal
2021-02-08T14:13:25.9039547Z Generating files for greater
2021-02-08T14:13:25.9073398Z Generating files for greater_equal
2021-02-08T14:13:25.9106756Z Generating files for less
2021-02-08T14:13:25.9145097Z Generating files for less_equal
2021-02-08T14:13:25.9200975Z Generating files for not_equal
2021-02-08T14:13:25.9351608Z -- Performing Test COMPILER_HAS_DEPRECATED_ATTR
2021-02-08T14:13:26.6045806Z -- Performing Test COMPILER_HAS_DEPRECATED_ATTR - Failed
2021-02-08T14:13:26.6050806Z -- Performing Test COMPILER_HAS_DEPRECATED
2021-02-08T14:13:27.4778165Z -- Performing Test COMPILER_HAS_DEPRECATED - Success
2021-02-08T14:13:27.5461292Z -- Warning: this does not have an effect - use NO_SYSTEM_FROM_IMPORTED if using imported targets
2021-02-08T14:13:27.5477735Z -- Configuring done
2021-02-08T14:13:28.4325287Z -- Generating done
2021-02-08T14:13:28.4412067Z -- Build files have been written to: D:/a/1/a/build
2021-02-08T14:13:28.4716326Z ##[section]Finishing: CMake configuration
2021-02-08T14:13:28.4746361Z ##[section]Starting: Build C++ unit tests
2021-02-08T14:13:28.4864887Z ==============================================================================
2021-02-08T14:13:28.4865170Z Task         : Bash
2021-02-08T14:13:28.4865612Z Description  : Run a Bash script on macOS, Linux, or Windows
2021-02-08T14:13:28.4865874Z Version      : 3.179.0
2021-02-08T14:13:28.4866129Z Author       : Microsoft Corporation
2021-02-08T14:13:28.4866463Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/bash
2021-02-08T14:13:28.4866861Z ==============================================================================
2021-02-08T14:13:28.6612137Z Generating script.
2021-02-08T14:13:28.6731809Z [command]"C:\Program Files\Git\bin\bash.exe" --noprofile --norc -c pwd
2021-02-08T14:13:28.7048866Z /d/a/_temp
2021-02-08T14:13:28.7100486Z ========================== Starting Command Output ===========================
2021-02-08T14:13:28.7108350Z [command]"C:\Program Files\Git\bin\bash.exe" --noprofile --norc /d/a/_temp/ddd90960-4b61-4b1a-b47e-a008fbe6d455.sh
2021-02-08T14:13:28.7406812Z + cd 'D:\a\1\a/build'
2021-02-08T14:13:28.7407488Z + source activate scipp-developer
2021-02-08T14:13:28.7413114Z ++ _CONDA_ROOT=C:/Miniconda
2021-02-08T14:13:28.7413906Z ++ . C:/Miniconda/etc/profile.d/conda.sh
2021-02-08T14:13:28.7414498Z +++ export 'CONDA_EXE=C:/Miniconda\Scripts\conda.exe'
2021-02-08T14:13:28.7415069Z +++ CONDA_EXE='C:/Miniconda\Scripts\conda.exe'
2021-02-08T14:13:28.7415600Z +++ export _CE_M=
2021-02-08T14:13:28.7415980Z +++ _CE_M=
2021-02-08T14:13:28.7416432Z +++ export _CE_CONDA=
2021-02-08T14:13:28.7416865Z +++ _CE_CONDA=
2021-02-08T14:13:28.7417391Z +++ export 'CONDA_PYTHON_EXE=C:/Miniconda\python.exe'
2021-02-08T14:13:28.7419024Z +++ CONDA_PYTHON_EXE='C:/Miniconda\python.exe'
2021-02-08T14:13:28.7419617Z +++ '[' -z '' ']'
2021-02-08T14:13:28.7420063Z +++ export CONDA_SHLVL=0
2021-02-08T14:13:28.7420513Z +++ CONDA_SHLVL=0
2021-02-08T14:13:28.7421013Z +++ '[' -n x ']'
2021-02-08T14:13:28.7422045Z +++ '[' -n x ']'
2021-02-08T14:13:28.7505888Z ++++ dirname 'C:/Miniconda\Scripts\conda.exe'
2021-02-08T14:13:28.7670827Z +++ PATH='C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:28.7675514Z +++ export PATH
2021-02-08T14:13:28.7676249Z +++ '[' -z '' ']'
2021-02-08T14:13:28.7676761Z +++ PS1=
2021-02-08T14:13:28.7677162Z ++ conda activate scipp-developer
2021-02-08T14:13:28.7677517Z ++ '[' 2 -lt 1 ']'
2021-02-08T14:13:28.7677935Z ++ local cmd=activate
2021-02-08T14:13:28.7678297Z ++ shift
2021-02-08T14:13:28.7678776Z ++ case "$cmd" in
2021-02-08T14:13:28.7679142Z ++ __conda_activate activate scipp-developer
2021-02-08T14:13:28.7679542Z ++ '[' -n '' ']'
2021-02-08T14:13:28.7679914Z ++ local cmd=activate
2021-02-08T14:13:28.7680273Z ++ shift
2021-02-08T14:13:28.7680583Z ++ local ask_conda
2021-02-08T14:13:28.7685391Z ++ CONDA_INTERNAL_OLDPATH='C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:28.7689672Z ++ __add_sys_prefix_to_path
2021-02-08T14:13:28.7690089Z ++ '[' -n '' ']'
2021-02-08T14:13:28.7745422Z +++ dirname 'C:/Miniconda\Scripts\conda.exe'
2021-02-08T14:13:28.7928887Z ++ SYSP='C:/Miniconda\Scripts'
2021-02-08T14:13:28.8005818Z +++ dirname 'C:/Miniconda\Scripts'
2021-02-08T14:13:28.8183496Z ++ SYSP=C:/Miniconda
2021-02-08T14:13:28.8187809Z ++ '[' -n x ']'
2021-02-08T14:13:28.8193316Z ++ PATH='C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:28.8394502Z ++ PATH='C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:28.8405163Z ++ PATH='C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:28.8415659Z ++ PATH='C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:28.8424568Z ++ PATH='C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:28.8434471Z ++ PATH='C:/Miniconda:C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:28.8440382Z ++ export PATH
2021-02-08T14:13:28.8440842Z +++ PS1=
2021-02-08T14:13:28.8441340Z +++ 'C:/Miniconda\Scripts\conda.exe' shell.posix activate scipp-developer
2021-02-08T14:13:29.1176051Z ++ ask_conda='PS1='\''(scipp-developer) '\''
2021-02-08T14:13:29.1182634Z export PATH='\''/c/Miniconda/envs/scipp-developer:/c/Miniconda/envs/scipp-developer/Library/mingw-w64/bin:/c/Miniconda/envs/scipp-developer/Library/usr/bin:/c/Miniconda/envs/scipp-developer/Library/bin:/c/Miniconda/envs/scipp-developer/Scripts:/c/Miniconda/envs/scipp-developer/bin:C:/Miniconda:C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda/Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/usr/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'\''
2021-02-08T14:13:29.1188518Z export CONDA_PREFIX='\''C:\Miniconda\envs\scipp-developer'\''
2021-02-08T14:13:29.1189215Z export CONDA_SHLVL='\''1'\''
2021-02-08T14:13:29.1190097Z export CONDA_DEFAULT_ENV='\''scipp-developer'\''
2021-02-08T14:13:29.1190701Z export CONDA_PROMPT_MODIFIER='\''(scipp-developer) '\''
2021-02-08T14:13:29.1191279Z export CONDA_EXE='\''/c/Miniconda/Scripts/conda.exe'\''
2021-02-08T14:13:29.1191783Z export _CE_M='\'''\''
2021-02-08T14:13:29.1192231Z export _CE_CONDA='\'''\''
2021-02-08T14:13:29.1192734Z export CONDA_PYTHON_EXE='\''/c/Miniconda/python.exe'\'''
2021-02-08T14:13:29.1194984Z ++ rc=0
2021-02-08T14:13:29.1200703Z ++ PATH='C:/Miniconda\Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:29.1206025Z ++ eval 'PS1='\''(scipp-developer) '\''
2021-02-08T14:13:29.1212720Z export PATH='\''/c/Miniconda/envs/scipp-developer:/c/Miniconda/envs/scipp-developer/Library/mingw-w64/bin:/c/Miniconda/envs/scipp-developer/Library/usr/bin:/c/Miniconda/envs/scipp-developer/Library/bin:/c/Miniconda/envs/scipp-developer/Scripts:/c/Miniconda/envs/scipp-developer/bin:C:/Miniconda:C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda/Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/usr/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'\''
2021-02-08T14:13:29.1218445Z export CONDA_PREFIX='\''C:\Miniconda\envs\scipp-developer'\''
2021-02-08T14:13:29.1218938Z export CONDA_SHLVL='\''1'\''
2021-02-08T14:13:29.1219409Z export CONDA_DEFAULT_ENV='\''scipp-developer'\''
2021-02-08T14:13:29.1219917Z export CONDA_PROMPT_MODIFIER='\''(scipp-developer) '\''
2021-02-08T14:13:29.1220438Z export CONDA_EXE='\''/c/Miniconda/Scripts/conda.exe'\''
2021-02-08T14:13:29.1220992Z export _CE_M='\'''\''
2021-02-08T14:13:29.1221440Z export _CE_CONDA='\'''\''
2021-02-08T14:13:29.1221909Z export CONDA_PYTHON_EXE='\''/c/Miniconda/python.exe'\'''
2021-02-08T14:13:29.1222378Z +++ PS1='(scipp-developer) '
2021-02-08T14:13:29.1229519Z +++ export 'PATH=/c/Miniconda/envs/scipp-developer:/c/Miniconda/envs/scipp-developer/Library/mingw-w64/bin:/c/Miniconda/envs/scipp-developer/Library/usr/bin:/c/Miniconda/envs/scipp-developer/Library/bin:/c/Miniconda/envs/scipp-developer/Scripts:/c/Miniconda/envs/scipp-developer/bin:C:/Miniconda:C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda/Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/usr/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:29.1240048Z +++ PATH='/c/Miniconda/envs/scipp-developer:/c/Miniconda/envs/scipp-developer/Library/mingw-w64/bin:/c/Miniconda/envs/scipp-developer/Library/usr/bin:/c/Miniconda/envs/scipp-developer/Library/bin:/c/Miniconda/envs/scipp-developer/Scripts:/c/Miniconda/envs/scipp-developer/bin:C:/Miniconda:C:/Miniconda/Library/mingw-w64/bin:C:/Miniconda/Library/usr/bin:C:/Miniconda/Library/bin:C:/Miniconda/Scripts:C:/Miniconda/bin:C:/Miniconda/Scripts/condabin:/mingw64/bin:/usr/bin:/c/Users/VssAdministrator/bin:/c/Miniconda/Scripts:/c/agents/2.181.1/externals/git/cmd:/c/Users/VssAdministrator/.dotnet/tools:/c/Program Files/MongoDB/Server/4.4/bin:/c/aliyun-cli:/c/vcpkg:/c/cf-cli:/c/Program Files (x86)/NSIS:/c/Program Files/Mercurial:/c/hostedtoolcache/windows/stack/2.5.1/x64:/c/ProgramData/chocolatey/lib/ghc.8.10.3/tools/ghc-8.10.3/bin:/c/Program Files/dotnet:/c/mysql-5.7.21-winx64/bin:/c/Program Files/R/R-4.0.3/bin/x64:/c/SeleniumWebDrivers/GeckoDriver:/c/Program Files (x86)/sbt/bin:/c/Rust/.cargo/bin:/c/Program Files (x86)/GitHub CLI:/usr/bin:/c/Program Files (x86)/pipx_bin:/c/hostedtoolcache/windows/go/1.14.14/x64/bin:/c/hostedtoolcache/windows/Python/3.7.9/x64/Scripts:/c/hostedtoolcache/windows/Python/3.7.9/x64:/c/hostedtoolcache/windows/Ruby/2.5.8/x64/bin:/c/Program Files/Java/jdk8u282-b08/bin:/c/npm/prefix:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files/Microsoft SDKs/Azure/Azure Dev Spaces CLI:/c/Program Files (x86)/Microsoft SDKs/Azure/CLI2/wbin:/c/ProgramData/kind:/c/windows/system32:/c/windows:/c/windows/System32/Wbem:/c/windows/System32/WindowsPowerShell/v1.0:/c/windows/System32/OpenSSH:/c/ProgramData/Chocolatey/bin:/c/Program Files/Microsoft/Web Platform Installer:/c/Program Files/Docker:/c/Program Files/PowerShell/7:/c/Program Files/dotnet:/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/140/DTS/Binn:/c/Program Files (x86)/Microsoft SQL Server/150/DTS/Binn:/c/Program Files/nodejs:/c/ProgramData/chocolatey/lib/pulumi/tools/Pulumi/bin:/c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin:/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/c/Program Files/OpenSSL/bin:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/cmd:/mingw64/bin:/usr/bin:/c/tools/php:/c/Program Files (x86)/sbt/bin:/c/Program Files/TortoiseSVN/bin:/c/SeleniumWebDrivers/ChromeDriver:/c/SeleniumWebDrivers/EdgeDriver:/c/Program Files/CMake/bin:/c/Program Files/Amazon/AWSCLIV2:/c/Program Files/Amazon/SessionManagerPlugin/bin:/c/Program Files/Amazon/AWSSAMCLI/bin:/c/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/bin:/c/Program Files (x86)/Microsoft BizTalk Server:/c/Users/VssAdministrator/AppData/Local/Microsoft/WindowsApps'
2021-02-08T14:13:29.1245668Z +++ export 'CONDA_PREFIX=C:\Miniconda\envs\scipp-developer'
2021-02-08T14:13:29.1246309Z +++ CONDA_PREFIX='C:\Miniconda\envs\scipp-developer'
2021-02-08T14:13:29.1246788Z +++ export CONDA_SHLVL=1
2021-02-08T14:13:29.1247203Z +++ CONDA_SHLVL=1
2021-02-08T14:13:29.1247626Z +++ export CONDA_DEFAULT_ENV=scipp-developer
2021-02-08T14:13:29.1248093Z +++ CONDA_DEFAULT_ENV=scipp-developer
2021-02-08T14:13:29.1248574Z +++ export 'CONDA_PROMPT_MODIFIER=(scipp-developer) '
2021-02-08T14:13:29.1249073Z +++ CONDA_PROMPT_MODIFIER='(scipp-developer) '
2021-02-08T14:13:29.1249547Z +++ export CONDA_EXE=/c/Miniconda/Scripts/conda.exe
2021-02-08T14:13:29.1250029Z +++ CONDA_EXE=/c/Miniconda/Scripts/conda.exe
2021-02-08T14:13:29.1250461Z +++ export _CE_M=
2021-02-08T14:13:29.1250842Z +++ _CE_M=
2021-02-08T14:13:29.1251237Z +++ export _CE_CONDA=
2021-02-08T14:13:29.1251633Z +++ _CE_CONDA=
2021-02-08T14:13:29.1252072Z +++ export CONDA_PYTHON_EXE=/c/Miniconda/python.exe
2021-02-08T14:13:29.1252558Z +++ CONDA_PYTHON_EXE=/c/Miniconda/python.exe
2021-02-08T14:13:29.1252979Z ++ '[' 0 '!=' 0 ']'
2021-02-08T14:13:29.1253373Z ++ __conda_hashr
2021-02-08T14:13:29.1253758Z ++ '[' -n '' ']'
2021-02-08T14:13:29.1254149Z ++ '[' -n '' ']'
2021-02-08T14:13:29.1254502Z ++ hash -r
2021-02-08T14:13:29.1254938Z + cmake --build . --target all-tests --config Release
2021-02-08T14:13:29.2881769Z Microsoft (R) Build Engine version 16.8.3+39993bd9d for .NET Framework
2021-02-08T14:13:29.2882556Z Copyright (C) Microsoft Corporation. All rights reserved.
2021-02-08T14:13:29.2882918Z 
2021-02-08T14:13:29.7140586Z   Checking Build System
2021-02-08T14:13:29.9531003Z   Building Custom Rule D:/a/1/a/build/googletest-src/googlemock/CMakeLists.txt
2021-02-08T14:13:30.1004251Z   gtest-all.cc
2021-02-08T14:13:30.1004584Z   gmock-all.cc
2021-02-08T14:13:40.5929538Z   gmock.vcxproj -> D:\a\1\a\build\lib\Release\gmock.lib
2021-02-08T14:13:40.6789166Z   Building Custom Rule D:/a/1/a/build/googletest-src/googletest/CMakeLists.txt
2021-02-08T14:13:40.7652004Z   gtest-all.cc
2021-02-08T14:13:48.1322957Z   gtest.vcxproj -> D:\a\1\a\build\lib\Release\gtest.lib
2021-02-08T14:13:48.2209973Z   Building Custom Rule D:/a/1/a/build/googletest-src/googletest/CMakeLists.txt
2021-02-08T14:13:48.3073016Z   gtest_main.cc
2021-02-08T14:13:49.4999755Z   gtest_main.vcxproj -> D:\a\1\a\build\lib\Release\gtest_main.lib
2021-02-08T14:13:49.5493184Z   Building Custom Rule D:/a/1/s/common/test/CMakeLists.txt
2021-02-08T14:13:49.6569429Z   deep_ptr_test.cpp
2021-02-08T14:13:49.6740653Z   index_test.cpp
2021-02-08T14:13:51.2379811Z   is_linspace_test.cpp
2021-02-08T14:13:52.3597973Z C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.28.29333\include\algorithm(4100,36): warning C4244: 'initializing': conversion from 'const _Diff' to '__int64', possible loss of data [D:\a\1\a\build\common\test\scipp-common-test.vcxproj]
2021-02-08T14:13:52.3599120Z           with
2021-02-08T14:13:52.3599519Z           [
2021-02-08T14:13:52.3599906Z               _Diff=double
2021-02-08T14:13:52.3600407Z           ] (compiling source file D:\a\1\s\common\test\is_linspace_test.cpp)
2021-02-08T14:13:52.3601663Z D:\a\1\s\common\test\is_linspace_test.cpp(70): message : see reference to function template instantiation '_OutIt std::generate_n<std::back_insert_iterator<std::vector<double,std::allocator<double>>>,double,IsLinspaceTest_generate_addition_Test::TestBody::<lambda_1>>(_OutIt,const _Diff,_Fn)' being compiled [D:\a\1\a\build\common\test\scipp-common-test.vcxproj]
2021-02-08T14:13:52.3602874Z           with
2021-02-08T14:13:52.3603264Z           [
2021-02-08T14:13:52.3603831Z               _OutIt=std::back_insert_iterator<std::vector<double,std::allocator<double>>>,
2021-02-08T14:13:52.3604413Z               _Diff=double,
2021-02-08T14:13:52.3604983Z               _Fn=IsLinspaceTest_generate_addition_Test::TestBody::<lambda_1>
2021-02-08T14:13:52.3605521Z           ]
2021-02-08T14:13:53.8040063Z   LINK : /LTCG specified but no code generation required; remove /LTCG from the link command line to improve linker performance
2021-02-08T14:13:53.9054962Z   scipp-common-test.vcxproj -> D:\a\1\a\build\common\test\Release\scipp-common-test.exe
2021-02-08T14:13:54.1629802Z   Building Custom Rule D:/a/1/a/build/llnl-units-src/units/CMakeLists.txt
2021-02-08T14:13:54.2605988Z   units.cpp
2021-02-08T14:13:54.6249620Z   x12_conv.cpp
2021-02-08T14:13:55.0940960Z D:\a\1\a\build\llnl-units-src\units\units.cpp(139,34): error C2440: 'initializing': cannot convert from 'initializer list' to 'std::unordered_map<llnl::units::unit,const char *,std::hash<llnl::units::unit>,std::equal_to<llnl::units::unit>,std::allocator<std::pair<const llnl::units::unit,const char *>>>' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:55.1301330Z D:\a\1\a\build\llnl-units-src\units\units.cpp(315,44): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:55.4330617Z   r20_conv.cpp
2021-02-08T14:13:56.0771679Z D:\a\1\a\build\llnl-units-src\units\units.cpp(2400,33): error C2440: 'initializing': cannot convert from 'initializer list' to 'std::unordered_map<std::string,llnl::units::precise_unit,std::hash<std::string>,std::equal_to<std::string>,std::allocator<std::pair<const std::string,llnl::units::precise_unit>>>' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3001494Z D:\a\1\a\build\llnl-units-src\units\units.cpp(4504,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3600698Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5291,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3605760Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5291,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3611260Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5292,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3616958Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5292,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3623233Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5293,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3627879Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5293,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3636508Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5294,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3644467Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5294,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3651753Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5295,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3658795Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5295,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:56.3661176Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5296,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6014091Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5296,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6015304Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5297,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6016444Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5297,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6017585Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5298,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6018704Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5298,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6019794Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5299,34): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6021052Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5299,34): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6022157Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5300,34): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6023476Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5300,34): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6024575Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5301,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6025675Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5301,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6026775Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5302,34): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6027946Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5302,34): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6028996Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5303,34): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6030290Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5303,34): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6031506Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5304,34): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6032679Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5304,34): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6033963Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5305,45): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6035044Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5305,45): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6036096Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5306,45): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6037185Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5306,45): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6038287Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5307,45): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6039384Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5307,45): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6040551Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5308,40): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6041643Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5308,40): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6042890Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5309,40): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6044058Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5309,40): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6045233Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5310,40): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6046462Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5310,40): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6047631Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5311,38): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6049182Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5311,38): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6050360Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5312,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:58.6051929Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5312,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5958632Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5313,38): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5960964Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5313,38): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5963264Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5314,35): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5965625Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5314,35): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5967896Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5315,39): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5970113Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5315,39): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5972623Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5316,40): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5974872Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5316,40): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5977762Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5317,40): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5980031Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5317,40): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5982260Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5318,39): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5984496Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5318,39): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5987435Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5319,39): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5994539Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5319,39): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5997275Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5320,39): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.5999675Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5320,39): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6002023Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5321,36): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6004358Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5321,36): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6006799Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5322,38): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6009111Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5322,38): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6011404Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5323,39): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6013635Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5323,39): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6015974Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5324,39): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6018502Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5324,39): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6020841Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5430,45): error C2440: '<function-style-cast>': cannot convert from 'initializer list' to 'llnl::units::ckpair' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6023136Z D:\a\1\a\build\llnl-units-src\units\units.cpp(5430,45): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6025402Z D:\a\1\a\build\llnl-units-src\units\units.cpp(6635,10): error C2440: 'initializing': cannot convert from 'const char8_t [3]' to '_Ty' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6026842Z           with
2021-02-08T14:13:59.6027542Z           [
2021-02-08T14:13:59.6028357Z               _Ty=const char *
2021-02-08T14:13:59.6029160Z           ]
2021-02-08T14:13:59.6030774Z D:\a\1\a\build\llnl-units-src\units\units.cpp(6635,10): message : Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6033131Z D:\a\1\a\build\llnl-units-src\units\units.cpp(6632,79): error C2131: expression did not evaluate to a constant [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6035166Z D:\a\1\a\build\llnl-units-src\units\units.cpp(6632,79): message : a non-constant (sub-)expression was encountered [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6038019Z D:\a\1\a\build\llnl-units-src\units\units.cpp(6697,77): error C2440: 'initializing': cannot convert from 'initializer list' to 'std::unordered_map<std::string,llnl::units::precise_unit,std::hash<std::string>,std::equal_to<std::string>,std::allocator<std::pair<const std::string,llnl::units::precise_unit>>>' [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6044750Z D:\a\1\a\build\llnl-units-src\units\units.cpp(6921,1): message : No constructor could take the source type, or constructor overload resolution was ambiguous [D:\a\1\a\build\llnl-units-build\units\units-static.vcxproj]
2021-02-08T14:13:59.6046722Z   commodities.cpp
2021-02-08T14:13:59.6131600Z ##[error]Bash exited with code '1'.
2021-02-08T14:13:59.6147632Z ##[section]Finishing: Build C++ unit tests
2021-02-08T14:13:59.6234012Z ##[section]Starting: Checkout scipp/scipp@refs/pull/1663/merge to s
2021-02-08T14:13:59.6347284Z ==============================================================================
2021-02-08T14:13:59.6347565Z Task         : Get sources
2021-02-08T14:13:59.6347895Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.
2021-02-08T14:13:59.6348219Z Version      : 1.0.0
2021-02-08T14:13:59.6348412Z Author       : Microsoft
2021-02-08T14:13:59.6348743Z Help         : [More Information](https://go.microsoft.com/fwlink/?LinkId=798199)
2021-02-08T14:13:59.6349079Z ==============================================================================
2021-02-08T14:14:00.1026349Z Cleaning any cached credential from repository: scipp/scipp (GitHub)
2021-02-08T14:14:00.1233740Z ##[section]Finishing: Checkout scipp/scipp@refs/pull/1663/merge to s
2021-02-08T14:14:00.1313273Z ##[section]Starting: Finalize Job
2021-02-08T14:14:00.1345780Z Cleaning up task key
2021-02-08T14:14:00.1347305Z Start cleaning up orphan processes.
2021-02-08T14:14:00.1431316Z Terminate orphan process: pid (948) (vctip)
2021-02-08T14:14:00.1443469Z Terminate orphan process: pid (1092) (mspdbsrv)
2021-02-08T14:14:00.1446458Z ##[section]Finishing: Finalize Job
2021-02-08T14:14:00.1484296Z ##[section]Finishing: Windows

measurement_from_string for single precision

I see that measurement_from_string produces a units::precision_measurement. Would it be possible to add one for single precision also.

Would it make sense to rename precision_measurement to precise_measurement in line of precise_unit?

Use of uninitialised memory in unit maps

Running clang's memory sanitiser showed that some functions which run during static initialisation use uninitialised memory. In all cases this happens because the functions read from static variables and it looks like those variables have not been initialised yet.

Specifically, I found (in units.cpp):

  • getDefinedBaseUnitNames
  • loadDefinedUnits

I cannot seem to create a minimal reproducer. This problems shows up in our library but not in my small test programs. Maybe static variables are simply initialised in the correct order in the test cases.

I did not notice any bugs caused by this. It showed up while debugging something unrelated.

Optional wider range of base unit exponents?

Hi!

For our application we are a bit worried about the (limited) range of supported exponents. There are two aspects, I think:

  1. Ability to detect over- or underflow in operation such as operator* or operator/. When in use by a wrapping Python library it is in practice difficult to ensure that the allowed range of base unit powers is not exceeded. I could not find a way to detect this?
  2. Extending the range of allowed powers, by increasing the width of unit_data.
    • Would alleviate the issues related to 1.)
    • Would fix some actual limitations. For example, counts has a maximum exponent of +1, but we routinely require +2, e.g., since the unit of the variance (square of standard-deviation) is counts**2.

Obviously 2.) is in conflict with design requirements regarding size, so the question is whether making this configurable at compile time would be acceptable?

I gave this a try in my fork (doubling the size of unit_data and the bitfields inside), and it seems to work with very few changes (apart from some failing unit test with custom units). For our application the unit is typically attached to a large array, so the extra couple of bytes are not an issue.

Would you consider accepting such a change where, e.g., a cmake flag could enable a wider unit_data type with a greater exponent range? If so, I can clean up my branch and open a PR for further discussion.

Conan package

We are currently installing units as a CMake external project. While this works, it requires some manual maintenance on our end (and on anyone else's who uses the library in this fashion). This would be alleviated if there were a Conan package of units.

I created a simple test recipe and managed to make it work locally. But it would of course be best to publish a package. We could do so on conancenter directly or on our own, public server as ESS.

I would like to get your input. Did you consider using conan or a different package manager at any point?

Scipp will probably use LLNL/units

Hi!
I just wanted to get in touch to let you know that scipp is probably going to use this library. Scipp is a Python/C++ library for neutron-scattering developed by the European Spallation Source. We have been looking for a better way to handle units, and so far LLNL/units seems to check all the boxes. ๐Ÿ‘

We will probably have a couple of questions, issues, or maybe pull-requests soon.

Cheers,
Simon

seg fault in fuzzer tests on circle-ci

#230208	REDUCE cov: 4995 ft: 27236 corp: 1966/275Kb lim: 512 exec/s: 1192 rss: 624Mb L: 63/512 MS: 3 ShuffleBytes-CMP-EraseBytes- DE: "\xff\x0a\xef\xf0"-
#230275	REDUCE cov: 4995 ft: 27236 corp: 1966/275Kb lim: 512 exec/s: 1193 rss: 624Mb L: 99/512 MS: 2 ManualDict-EraseBytes- DE: "\xf1\xef\x0c\x00"-
Segmentation fault
make[3]: *** [FuzzTargets/CMakeFiles/QUICK_RAW_FUZZ.dir/build.make:58: FuzzTargets/CMakeFiles/QUICK_RAW_FUZZ] Error 139
make[2]: *** [CMakeFiles/Makefile2:1083: FuzzTargets/CMakeFiles/QUICK_RAW_FUZZ.dir/all] Error 2
make[1]: *** [CMakeFiles/Makefile2:1090: FuzzTargets/CMakeFiles/QUICK_RAW_FUZZ.dir/rule] Error 2
make: *** [Makefile:519: QUICK_RAW_FUZZ] Error 2

This is not supposed to happen
I think it is related to google/oss-fuzz#2328

probably means we need to revert the build image to use an earlier version of clang at least until clang 10 is available in an image

Convert to inverse unit incorrect

Thanks for this awesome library. As far as I can tell, I have found an error in the conversion between inverse magnitudes like Hertz and seconds.

units::precise_unit unitA=units::unit_from_string("ms");
units::precise_unit unitB=units::unit_from_string("kHz");
double v=units::convert(1, unitA, unitB);
double v2=units::convert(v, unitB, unitA);
std::cout << "v = '" << v << "'" << std::endl;
std::cout << "v2 = '" << v2 << "'" << std::endl;

gives the following output:

v = '1e+06'
v2 = '1e-12'

As far as I can tell,
return result.multiplier() / (val * start.multiplier());
should be replaced by
1.0 / (val * start.multiplier() * result.multiplier());.

Unary negation of measurements

Hi,

while most arithmetic operators are present, unary minus/negation seems like an oversight

In file included from arbor/lif_cell_group.hpp:8:
arbor/include/arbor/lif_cell.hpp:20:25: error: invalid argument type 'measurement' to unary expression
   20 |     measurement V_th  = -10_mV;    // Firing threshold [mV].
      |                         ^~~~~~
1 error generated.

This arises when adding my own sugar in form of UDL to units. Is there a reason for not
providing unary minus?

String formatting with eV?

#112 fixed some string formatting for units containing meV (milli electron volt). In our field (time-of-flight neutron scattering) we also encounter some odd combinations with this, the main example comes to mind is counts/meV. Currently this gets formatted badly:

// parsing ok
unit_from_string("counts/meV")
// to_string not ok
6.2415090744607627e+21counts/J

Is there a generic way to fix this, that doesn't require adding more exceptions?

CleanUnitString breaks on 0.2 and 0.3

Pretty weird error and I can't fully tell what the intention in this section of code is, but

units::measurement_from_string("0.2") currently yields zero.

The reason is in the following lines in units.cpp. I don't know why 2 and 3 are a special case here, but I assume there is a case '.': missing in front of the break?

        auto eit = unit_string.end() - 1;
        if (*(eit) == '2' || *(eit) == '3') {
            if ((*(eit - 1) == '-' || *(eit - 1) == '+') &&
                unit_string.size() >= 3) {
                --eit;
            }
            if (!isDigitCharacter(*(eit - 1))) {
                switch (*(eit - 1)) {
                    case '^':
                    case 'e':
                    case 'E':
                    case '/':
                    case '+':
                    case '-':
                        break;
                    case '*':
                        *(eit - 1) = '^';
                        break;
                    default:
                        if (eit[0] != '+') {
                            unit_string.insert(eit, '^');
                        } else {
                            *eit = '^';
                        }

                        break;
                }
            }
        }
    }```

Hard to deal with shared library

Hi,

I just started units library and I have found some problematic points when dealing with shared units library.

I successively installed shared units library with (Windows 10, MSVC 2019 x64):

  • cd C:/units
  • mkdir d
  • cd d
  • cmake .. -DUNITS_BUILD_SHARED_LIBRARY=ON -DUNITS_BUILD_STATIC_LIBRARY=OFF -DUNITS_BUILD_WEB_SERVER=OFF -DUNITS_ENABLE_TESTS=OFF
  • cmake --build . --config Debug
  • cmake --install . --prefix ../install_d --config Debug

Then I create new cmake project units_test where I want to check units functionality. Here is the simple CMakeLists.txt of my units_test program:

cmake_minimum_required(VERSION 3.5)

project(units_test LANGUAGES CXX)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

add_executable(units_test main.cpp)

find_package(units REQUIRED)

target_link_libraries(units_test PUBLIC units-shared)

and I pass -Dunits_DIR=/path/to/units/install_d/lib/cmake argument when configuring my units_test project.

First of all why you named differently units-shared target instead of simply units? I have seen this once in another library and this confuses me because that makes me to hardcode my CMake script to allow linking to third party library if it is built in static or shared mode.

Then in your examples you include headers as #include <units/units.hpp> but if I installed units then I can see the folder structure is:

/install
    /bin
    /include
    /lib
        /cmake

thus to include installed units I can only do #include <units.hpp>. This adds difficulties when somebody wil use my library (that depends on units) and link units via add_subdirectory(...). My #include <units.hpp> will give error because the right way in this case would be #include <units/units.hpp>

Also when trying to link to installed shared library I get error that units_decl.hpp can't find units/units_export.h. So I have to manually create folder units inside install_d/include/ and copy units_export.h (I guess it is automatically generated by CMake) there.

I propose:

  1. rename units-shared cmake target to standard units (do not make difference between shared/static/interface (header only) target`;
  2. when doing install we should install header files in install/include/units folder;
  3. copy units_export.h when doing installation.

P.S. You made a great library and I can see that it will help me a lot! Thank you!

"Pounds" not recognized consistently during case-insensitive string conversions

When performing string conversions, "lb" and "lbs" are recognized differently depending on the units::case_insensitive flag.
I've tested this behavior using the latest commit in master (2c68c59).

Both "lb" and "lbs" result in a measurement with unit units::lb without the units::case_insensitive flag. However, only "lbs" is recognized with the flag. "lb" results in an invalid unit.

This can wreak extra havoc when round-tripping through a string because the unit abbreviation is normalized to "lb". I use the same function in a wrapper class to take input from the user and from a SQLite database; this function must allow case-insensitive parsing as input comes from untrained users in a GUI. As a workaround, I can force case-sensitive parsing when coming from the database, but the inconsistent behavior seems buggy and I'd rather not need two separate FromString() methods in my wrapper class.

Below is a short example program to demonstrate this behavior:

#include <units/units.hpp>
#include <iostream>

int main() {
  // Case sensitive string conversion
  units::precise_measurement case_sensitive_plural =
      units::measurement_from_string("17 lbs");
  // true
  std::cout << "case sensitive plural: " << case_sensitive_plural.units().has_same_base(units::lb) << std::endl;
  units::precise_measurement case_sensitive_singular =
      units::measurement_from_string("17 lb");
  // true
  std::cout << "case sensitive singular: " << case_sensitive_singular.units().has_same_base(units::lb) << std::endl;

  // Case insensitive string conversion
  units::precise_measurement case_insensitive_plural =
      units::measurement_from_string("17 lbs", units::case_insensitive);
  // true
  std::cout << "case insensitive plural: " << case_insensitive_plural.units().has_same_base(units::lb) << std::endl;
  units::precise_measurement case_insensitive_singular =
      units::measurement_from_string("17 lb", units::case_insensitive);
  // false
  std::cout << "case insensitive singular: " << case_insensitive_singular.units().has_same_base(units::lb) << std::endl;

  // Round trip
  const std::string case_insensitive_plural_str = units::to_string(case_insensitive_plural);
  units::precise_measurement round_trip =
      units::measurement_from_string(case_insensitive_plural_str, units::case_insensitive);
  // false
  std::cout << "round trip: " << round_trip.units().has_same_base(units::lb) << std::endl;

  return 0;
}

This creates the following output:

case sensitive plural: 1
case sensitive singular: 1
case insensitive plural: 1
case insensitive singular: 0
round trip: 0

Function to remove a single user defined unit

Given that you are planning to add more features to user defined units as mentioned in #268 (comment), it would be nice for our use case to add the ability to remove a single user defined unit.

Currently, we implement this functionality by clearing all user defined units and re-adding all except the removed one. Performance is not curial for us, so it works fine. But I would expect other users to face a similar problem.

std::cout stream error

The usage code from the documentation:

	using namespace units;
	measurement length1=45.0*m;
	measurement length2=20.0*m;

	measurement area=length1*length2;

	std::cout<<"the area is "<<area<< " or "<<area.convert_to(ft.pow(2))<<".\n";

Produces the following compile error (MinGW 7.3.0).

error: no match for 'operator<<' (operand types are 'std::basic_ostream<char>' and 'units::measurement')
  std::cout<<"the area is "<<area<< " or "<<area.convert_to(ft.pow(2))<<".\n";
  ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~

Searching the code I have found the following line in units_decl.h

// std::ostream &operator<<(std::ostream &stream, units::unit u);

So does this mean, the stream operator is currently disabled and does not work or am I doing something wrong?

Thank you

CMAKE_CXX_STANDARD not used

The units library cmake code should acknowledge and use CMAKE_CXX_STANDARD if it is defined.

currently UNITS_CXX_STANDARD is used, and that should continue to be the case but there should be a path through the CMAKE_CXX_STANDARD as well

Question about to_string() function

Hi

I'm using your code in my material testing software, Normally string functionality works fine but sometimes seems it not working as I expect.

For example in this code:

auto unit = lbf;
qDebug() << units::to_string(unit).data();

outputs 4.44822161526049964N instead of "lbf"

And another question which can be relevant to the previous one, suppose this code:

auto unit = kilo * Hz;
qDebug() << units::to_string(unit).data();

outputs "1/ms" which is theatrically correct but I need to show "kHz" to my user.
is it possible to do that?

As you know in material testing there are lots of rate units, e.g. force/time, stress/time, strain/time and as multiplier factors all of them are working properly in your library but sometimes I need to present them with different strings in my software, it would be great for me to if there is a way to achieve that.

Thanks in advance.

Exposing map of all units

I have a use case where I'd like to present a user with a list of units to convert from via a dropdown menu and a second dropdown menu with compatible units to convert to.

It looks like static const smap base_unit_vals in units.cpp provides all the available units and their string representation in this library which is awesome. Problem is this is static and I need this exposed. As a workaround I just externed it in units.hpp:

...
#include <unordered_map>
...
namespace units {
...
using smap = std::unordered_map<std::string, precise_unit>;
extern const smap base_unit_vals;

And remove the static specifier in units.cpp:

const smap base_unit_vals{

to_string strange output

to_string does not output the expected unit when using mm/s or mm/s^2 as a unit
see the example below

auto speedUnit = unit_from_string("mm/s"); cout << "speed unit" << to_string(speedUnit); //outputs mHz*m auto accUnit = unit_from_string("mm/s^2"); cout << "acceleration unit" << to_string(accUnit); //outputs 1/um

the webconverter does the same when pressing to_string, pressing convert will produce the right string representation

Using to_string for scalars causes crashes

In function

units/units/units.cpp

Lines 1723 to 1736 in e5b5765

std::string to_string(const measurement& measure, std::uint32_t match_flags)
{
std::stringstream ss;
ss.precision(6);
ss << measure.value();
ss << ' ';
auto str = to_string(measure.units(), match_flags);
if (isNumericalStartCharacter(str.front())) {
str.insert(str.begin(), '(');
str.push_back(')');
}
ss << str;
return ss.str();
}

the call

        auto str = to_string(measure.units(), match_flags);

may return an empty string.

This will cause a crash when using str.front().

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.