Closed jonrkarr closed 2 years ago
I just tried to install it though, it shows different output. How is the result of installing with pip command?
$ pipenv install git+https://github.com/modelon-community/Assimulo.git@Assimulo-3.2.5#egg=assimulo
Installing git+https://github.com/modelon-community/Assimulo.git@Assimulo-3.2.5#egg=assimulo...
Error: An error occurred while installing git+https://github.com/modelon-community/Assimulo.git@Assimulo-3.2.5#egg=assimulo!
Error text: Collecting assimulo
Cloning https://github.com/modelon-community/Assimulo.git (to revision Assimulo-3.2.5) to /private/var/folders/8r/vtqz0yqn5p1_1s2g3fh19d9h0000gn/T/pip-install-twix0_qu/assimulo_4d705f78187e4157a1e391ebcd1a18b6
Running command git clone -q https://github.com/modelon-community/Assimulo.git /private/var/folders/8r/vtqz0yqn5p1_1s2g3fh19d9h0000gn/T/pip-install-twix0_qu/assimulo_4d705f78187e4157a1e391ebcd1a18b6
Running command git checkout -q aa3f0aafc9849e103b2e17a1cd88d14c8a758af1
ERROR: Command errored out with exit status 1:
command: /Users/kobayashi/.local/share/virtualenvs/ho-W8oCU_Mh/bin/python -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/8r/vtqz0yqn5p1_1s2g3fh19d9h0000gn/T/pip-install-twix0_qu/assimulo_4d705f78187e4157a1e391ebcd1a18b6/setup.py'"'"'; __file__='"'"'/private/var/folders/8r/vtqz0yqn5p1_1s2g3fh19d9h0000gn/T/pip-install-twix0_qu/assimulo_4d705f78187e4157a1e391ebcd1a18b6/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/8r/vtqz0yqn5p1_1s2g3fh19d9h0000gn/T/pip-pip-egg-info-t7d7i8we
cwd: /private/var/folders/8r/vtqz0yqn5p1_1s2g3fh19d9h0000gn/T/pip-install-twix0_qu/assimulo_4d705f78187e4157a1e391ebcd1a18b6/
Complete output (5 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/private/var/folders/8r/vtqz0yqn5p1_1s2g3fh19d9h0000gn/T/pip-install-twix0_qu/assimulo_4d705f78187e4157a1e391ebcd1a18b6/setup.py", line 18, in <module>
import numpy as np
ModuleNotFoundError: No module named 'numpy'
----------------------------------------
WARNING: Discarding git+https://github.com/modelon-community/Assimulo.git@Assimulo-3.2.5#egg=assimulo. Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
ERROR: Could not find a version that satisfies the requirement assimulo (unavailable) (from versions: 2.8b1-fix, 2.0, 2.1, 2.1.1, 2.2, 2.3, 2.4, 2.5, 2.5.1, 2.6, 2.7b1, 2.8, 2.9, 3.0)
ERROR: No matching distribution found for assimulo (unavailable)
This is likely caused by a bug in assimulo. Report this to its maintainers.
✘ Installation Failed
Thanks for looking into this!
To reproduce everything, the non-Python dependencies for assimulo need to be installed. Without this, you get the error you see. I'll copy the commands here.
ARG SUNDIALS_VERSION=2.6.2
RUN apt-get install -y --no-install-recommends \
wget \
cmake \
make \
g++ \
\
&& cd /tmp \
&& wget https://computing.llnl.gov/sites/default/files/inline-files/sundials-${SUNDIALS_VERSION}.tar.gz \
&& tar xvvf sundials-${SUNDIALS_VERSION}.tar.gz \
&& cd sundials-${SUNDIALS_VERSION} \
&& mkdir build \
&& cd build \
&& cmake .. \
&& make \
&& make install \
\
&& cd /tmp \
&& rm sundials-${SUNDIALS_VERSION}.tar.gz \
&& rm -r sundials-${SUNDIALS_VERSION}
ENV LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
# install Python requirements for assimulo
RUN pipenv install cython numpy scipy matplotlib
ARG ASSIMULO_VERSION=3.2.5
RUN apt-get install -y --no-install-recommends \
g++ \
gfortran \
liblas-dev \
liblapack-dev \
git
Similar issue with installing pandas
directly from their github:
# pipenv -v install git+https://github.com/pandas-dev/pandas.git#egg=pandas
Installing git+https://github.com/pandas-dev/pandas.git#egg=pandas...
Installing package: git+https://github.com/pandas-dev/pandas.git#egg=pandas
Writing supplied requirement line to temporary file: 'git+https://github.com/pandas-dev/pandas.git#egg=pandas'
Installing 'pandas'
⠙ Installing pandas...$ ['/home/carloss/.local/share/virtualenvs/sigterm-T7dXceCw/bin/pip', 'install', '--verbose', '--upgrade', '--exists-action=i', '-r', '/tmp/pipenv-_u_g_0q3-requirements/pipenv-96_wm2wm-requirement.txt', '-i', 'https://pypi.python.org/simple']
Using source directory: '/home/carloss/.local/share/virtualenvs/sigterm-T7dXceCw/src'
Adding pandas to Pipfile's [packages]...
✔ Installation Succeeded
Pipfile.lock (62ba83) out of date, updating to (71ee45)...
Locking [dev-packages] dependencies...
Locking [packages] dependencies...
Building requirements...
Resolving dependencies...
⠏ Locking...Traceback (most recent call last):
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1195, in ast_unparse
✘ Locking Failed!
unparsed[unparse(k)] = unparse(v)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1080, in ast_unparse
items = unparse(analyzer.assignments[assignment])
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1184, in ast_unparse
val = unparse(item.value, recurse=False)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1112, in ast_unparse
left, ops, right = unparse(item.test)
TypeError: cannot unpack non-iterable Compare object
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/resolver.py", line 764, in <module>
main()
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/resolver.py", line 758, in main
_main(parsed.pre, parsed.clear, parsed.verbose, parsed.system, parsed.write,
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/resolver.py", line 741, in _main
resolve_packages(pre, clear, verbose, system, write, requirements_dir, packages, dev)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/resolver.py", line 702, in resolve_packages
results, resolver = resolve(
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/resolver.py", line 684, in resolve
return resolve_deps(
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/utils.py", line 1397, in resolve_deps
results, hashes, markers_lookup, resolver, skipped = actually_resolve_deps(
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/utils.py", line 1107, in actually_resolve_deps
resolver = Resolver.create(
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/utils.py", line 662, in create
constraints, skipped, index_lookup, markers_lookup = cls.get_metadata(
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/utils.py", line 462, in get_metadata
constraint_update, lockfile_update = cls.get_deps_from_req(
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/utils.py", line 541, in get_deps_from_req
req_list, lockfile = get_vcs_deps(reqs=[req])
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/utils.py", line 1893, in get_vcs_deps
with temp_path(), locked_repository(requirement) as repo:
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/utils.py", line 2049, in locked_repository
with requirement.req.locked_vcs_repo(src_dir=src_dir) as repo:
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/requirements.py", line 2211, in locked_vcs_repo
self._parsed_line.vcsrepo = vcsrepo
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/requirements.py", line 903, in vcsrepo
setupinfo = SetupInfo.create(
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1987, in create
created.get_initial_info()
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1816, in get_initial_info
self.update_from_dict(self.parse_setup_py())
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1558, in parse_setup_py
parsed = ast_parse_setup_py(self.setup_py.as_posix())
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1246, in ast_parse_setup_py
function_names = ast_analyzer.parse_functions()
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 981, in parse_functions
retries = self.parse_function_names(function_map=self.function_map)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 977, in parse_function_names
self.resolved_function_names[fn_name] = ast_unparse(v, analyzer=self)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1197, in ast_unparse
unparsed[k] = unparse(v)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1080, in ast_unparse
items = unparse(analyzer.assignments[assignment])
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1184, in ast_unparse
val = unparse(item.value, recurse=False)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1112, in ast_unparse
left, ops, right = unparse(item.test)
TypeError: cannot unpack non-iterable Compare object
Traceback (most recent call last):
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1195, in ast_unparse
unparsed[unparse(k)] = unparse(v)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1080, in ast_unparse
items = unparse(analyzer.assignments[assignment])
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1184, in ast_unparse
val = unparse(item.value, recurse=False)
File "/home/carloss/.local/lib/python3.8/site-packages/pipenv/vendor/requirementslib/models/setup_info.py", line 1112, in ast_unparse
left, ops, right = unparse(item.test)
TypeError: cannot unpack non-iterable Compare object
Using pipenv 2021.5.29
, pip 21.2.4, python 3.8.10, pip 20.0.2, pandas revision d30aeeba0c79fb8e4b651a8f528e87c3de8cb898
...
Installation succeeds if done directly with pip
.
@jonrkarr I just tried this on my branch that upgrades to the pip 22.0.4 and got an error message that indicates that something up with the setup.py requiring numpy already be installed:
matteius@matteius-VirtualBox:~/shared-projects/pipenv-triage/pipenv-4768$ pipenv install git+https://github.com/modelon-community/Assimulo.git@Assimulo-3.2.5#egg=assimulo
Creating a virtualenv for this project...
Pipfile: /home/matteius/shared-projects/pipenv-triage/pipenv-4768/Pipfile
Using /home/matteius/.pyenv/versions/3.10.2/bin/python3 (3.10.2) to create virtualenv...
⠹ Creating virtual environment...created virtual environment CPython3.10.2.final.0-64 in 512ms
creator CPython3Posix(dest=/home/matteius/.virtualenvs/pipenv-4768-8V2d0XU3, clear=False, no_vcs_ignore=False, global=False)
seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/matteius/.local/share/virtualenv)
added seed packages: pip==22.0.3, setuptools==60.9.3, wheel==0.37.1
activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator
✔ Successfully created virtual environment!
Virtualenv location: /home/matteius/.virtualenvs/pipenv-4768-8V2d0XU3
Creating a Pipfile for this project...
Installing git+https://github.com/modelon-community/Assimulo.git@Assimulo-3.2.5#egg=assimulo...
Error: An error occurred while installing git+https://github.com/modelon-community/Assimulo.git@Assimulo-3.2.5#egg=assimulo!
Error text: Collecting assimulo
Cloning https://github.com/modelon-community/Assimulo.git (to revision Assimulo-3.2.5) to /tmp/pip-install-d_eoxjh4/assimulo_9bb05009e934451f83d16258c2331295
Resolved https://github.com/modelon-community/Assimulo.git to commit aa3f0aafc9849e103b2e17a1cd88d14c8a758af1
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'error'
Running command git clone --filter=blob:none --quiet https://github.com/modelon-community/Assimulo.git /tmp/pip-install-d_eoxjh4/assimulo_9bb05009e934451f83d16258c2331295
Running command git checkout -q aa3f0aafc9849e103b2e17a1cd88d14c8a758af1
error: subprocess-exited-with-error
× python setup.py egg_info did not run successfully.
│ exit code: 1
╰─> [6 lines of output]
Traceback (most recent call last):
File "<string>", line 2, in <module>
File "<pip-setuptools-caller>", line 34, in <module>
File "/tmp/pip-install-d_eoxjh4/assimulo_9bb05009e934451f83d16258c2331295/setup.py", line 18, in <module>
import numpy as np
ModuleNotFoundError: No module named 'numpy'
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details.
This is likely caused by a bug in assimulo. Report this to its maintainers.
✘ Installation Failed
So then I ran pipenv install numpy
and then tried again, ModuleNotFoundError: No module named 'Cython'
Ok ... whats up with this setup.py I thought: https://github.com/modelon-community/Assimulo/blob/Assimulo-3.2.5/setup.py#L18-L26
Which is very bad thing to do on them. So I install also Cythton
requirement first... now I find out your requirement requires Fortrant to compile ... Ok this is getting messy.
error: extension 'assimulo.lib.dopri5' has Fortran sources but no Fortran compiler found
So I install Fortran compiler sudo apt-get install gfortran
and try again ... and get a bunch of fortran compiler errors. Did I not pick the right fortran compiler? I don't know much about it. Actually it seems to be my version of numpy is too new:; https://github.com/modelon-community/Assimulo/issues/34
Just tried the new version Assimulo-3.2.9#egg=assimulo
and same issue, makes sense that issue is still open. Ok so I downgrade numpy now ... which didn't help. But I think you get the idea, fortran compiler errors abound. If you could install it with pip you should be able to install it with the latest version of pipenv @jonrkarr
Thanks @matteius for exploring.
We can install this package with pip, but not with pipenv.
As you correctly pointed out, this package does have additional dependencies which must be installed prior to running pipenv/pip. We are installing the package like this:
Specifically, this is the Dockerfile that we're using: https://github.com/biosimulators/Biosimulators_PySCeS/blob/dev/Dockerfile-base
@jonrkarr Thanks, I just followed your steps, but unfortuantely when I get to the part where your Dockerfile has pip install git+https://github.com/modelon-community/Assimulo.git@Assimulo-${ASSIMULO_VERSION}
I get pip failing to compile it just the same as pipenv:
pip version: 22.0.4
pipenv-4768) matteius@matteius-VirtualBox:~/pipenv-4768$ pip install git+https://github.com/modelon-community/Assimulo.git@Assimulo-3.2.5
Collecting git+https://github.com/modelon-community/Assimulo.git@Assimulo-3.2.5
Cloning https://github.com/modelon-community/Assimulo.git (to revision Assimulo-3.2.5) to /tmp/pip-req-build-xk1b_nve
Running command git clone --filter=blob:none --quiet https://github.com/modelon-community/Assimulo.git /tmp/pip-req-build-xk1b_nve
Running command git checkout -q aa3f0aafc9849e103b2e17a1cd88d14c8a758af1
Resolved https://github.com/modelon-community/Assimulo.git to commit aa3f0aafc9849e103b2e17a1cd88d14c8a758af1
Preparing metadata (setup.py) ... done
Building wheels for collected packages: Assimulo
Building wheel for Assimulo (setup.py) ... error
error: subprocess-exited-with-error
× python setup.py bdist_wheel did not run successfully.
│ exit code: 1
╰─> [1177 lines of output]
DEBUG:setup.py called with the following optional args
{'blas_home': '', 'lapack_home': '', 'mkl_home': '', 'plugins_home': '', 'sundials_home': '', 'superlu_home': '', 'blas_name': 'blas', 'mkl_name': 'mkl', 'extra_c_flags': '', 'with_openmp': False, 'is_static': False, 'sundials_with_superlu': None, 'debug': False, 'force_32bit': False, 'no_msvcr': False, 'log': 'NOTSET', 'log_file': None, 'prefix': None, 'extra_fortran_link_flags': '', 'extra_fortran_link_files': '', 'extra_fortran_compile_flags': '', 'version': 'Default'}
argument parsing completed.
DEBUG:Source from svn revision unknow
DEBUG:Python version used: 3.10.2
DEBUG:Platform linux
WARNING:No path to BLAS supplied, disabling support. View more information using --log=DEBUG
DEBUG:usage: --blas-home=path
DEBUG:Note: the path required is to where the static library lib is found
WARNING:No path to SuperLU supplied, disabling support. View more information using --log=DEBUG
DEBUG:No path to SuperLU supplied, SUNDIALS will not be compiled with support for SuperLU.
DEBUG:usage: --superlu-home=path
DEBUG:Note: the path required is to the folder where the folders 'SRC' and 'lib' are found.
DEBUG:SUNDIALS found.
DEBUG:SUNDIALS 2.6 found.
DEBUG:Could not detect SuperLU support with Sundials, disabling support for SuperLU.
WARNING:No path to LAPACK supplied, disabling support. View more information using --log=DEBUG
DEBUG:usage: --lapack-home=path
DEBUG:Note: the path required is to where the static library lib is found
WARNING:No path to MKL supplied, disabling support. View more information using --log=DEBUG
DEBUG:usage: --mkl-home=path
DEBUG:Note: the path required is to where the static library lib is found
DEBUG:fromdir src todir /tmp/pip-req-build-xk1b_nve/build/assimulo
DEBUG:fromdir src/lib todir /tmp/pip-req-build-xk1b_nve/build/assimulo/lib
DEBUG:fromdir src/solvers todir /tmp/pip-req-build-xk1b_nve/build/assimulo/solvers
DEBUG:fromdir examples todir /tmp/pip-req-build-xk1b_nve/build/assimulo/examples
DEBUG:fromdir None todir /tmp/pip-req-build-xk1b_nve/build
DEBUG:fromdir None todir /tmp/pip-req-build-xk1b_nve/build/assimulo
DEBUG:fromdir tests todir /tmp/pip-req-build-xk1b_nve/build/assimulo/tests
DEBUG:fromdir tests/solvers todir /tmp/pip-req-build-xk1b_nve/build/assimulo/tests/solvers
DEBUG:Thirdparty method hairer file ['contr5.f90', 'dopri5.pyf', 'radau_decsol_error_output.patch', 'dc_decdel.f90', 'rodas_decsol.f', 'radau_decsol.patch', 'radar5.diff', 'rodas_decsol.pyf', 'dopri5.f', 'radar5_int.f90', 'radar5.f90', 'radau_decsol.f', 'decsol.f90', 'radar5.pyf', 'LICENSE_HAIRER', 'dontr5.f90', 'radau_decsol.pyf'] copied
DEBUG:fromdir thirdparty/hairer todir /tmp/pip-req-build-xk1b_nve/build/assimulo/thirdparty/hairer
DEBUG:Thirdparty method glimda file ['LICENSE_GLIMDA', 'glimda_complete.pyf', 'glimda_diff.patch', 'glimda_complete _original.f', 'glimda_complete.f'] copied
DEBUG:fromdir thirdparty/glimda todir /tmp/pip-req-build-xk1b_nve/build/assimulo/thirdparty/glimda
DEBUG:Thirdparty method odepack file ['odepack_aux.f90', 'opkda1.f', 'LICENSE_ODEPACK', 'opkdmain.f', 'odepack.pyf', 'opkda2.f'] copied
DEBUG:fromdir thirdparty/odepack todir /tmp/pip-req-build-xk1b_nve/build/assimulo/thirdparty/odepack
DEBUG:Thirdparty method odassl file ['odassl.pyf', 'read.me', 'LICENSE_ODASSL', 'demo.f', 'ddanrm.f', 'xerrwv.f', 'ddot.f', 'odassl.f', 'odajac.f', 'ddatrp.f', 'odacor.f', 'dscal.f', 'idamax.f', 'a.out', 'readme_f2py.txt', 'test_odassl.py', 'dgefa.f', 'd1mach.f', 'dgesl.f', 'test.txt', 'ddwats.f', 'daxpy.f', 'odastp.f'] copied
DEBUG:fromdir thirdparty/odassl todir /tmp/pip-req-build-xk1b_nve/build/assimulo/thirdparty/odassl
DEBUG:Thirdparty method dasp3 file ['DASP3_MAIN.FOR', 'test_dasp3dp.py', 'SOLVE.f', 'INIVAL.f', 'PREPOL.f', 'DECOMP.f', 'PDERIV.f', 'SPAPAT.f', 'test_dasp3.py', 'dasp3dp.pyf', 'HMAX.f', 'LICENSE_DASP3', 'JACEST.f', 'CTRACT.f', 'ANORM.f', 'DASP3.f', 'dasp3.pyf', 'how-to-f2py.txt'] copied
DEBUG:fromdir thirdparty/dasp3 todir /tmp/pip-req-build-xk1b_nve/build/assimulo/thirdparty/dasp3
[1/1] Cythonizing assimulo/solvers/sundials.pyx
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-req-build-xk1b_nve/build/assimulo/solvers/sundials.pyx
tree = Parsing.p_module(s, pxd, full_module_name)
[1/1] Cythonizing assimulo/solvers/kinsol.pyx
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-req-build-xk1b_nve/build/assimulo/solvers/kinsol.pyx
tree = Parsing.p_module(s, pxd, full_module_name)
WARNING:Could not find Blas or Lapack, disabling support for the solver GLIMDA.
DEBUG:['thirdparty/hairer/LICENSE_HAIRER', 'lib/hairer/LICENSE_HAIRER', 'thirdparty/glimda/LICENSE_GLIMDA', 'lib/glimda/LICENSE_GLIMDA', 'thirdparty/odepack/LICENSE_ODEPACK', 'lib/odepack/LICENSE_ODEPACK', 'thirdparty/odassl/LICENSE_ODASSL', 'lib/odassl/LICENSE_ODASSL', 'thirdparty/dasp3/LICENSE_DASP3', 'lib/dasp3/LICENSE_DASP3']
running bdist_wheel
running build
running config_cc
INFO: unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
INFO: unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
INFO: build_src
INFO: building extension "assimulo.algebraic" sources
INFO: building extension "assimulo.explicit_ode" sources
INFO: building extension "assimulo.implicit_ode" sources
INFO: building extension "assimulo.ode" sources
INFO: building extension "assimulo.problem" sources
INFO: building extension "assimulo.special_systems" sources
INFO: building extension "assimulo.support" sources
INFO: building extension "assimulo.solvers.euler" sources
INFO: building extension "assimulo.solvers.sundials" sources
INFO: building extension "assimulo.solvers.kinsol" sources
INFO: building extension "assimulo.lib.dopri5" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5-f2pywrappers.f' to sources.
INFO: building extension "assimulo.lib.rodas" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodas-f2pywrappers.f' to sources.
INFO: building extension "assimulo.lib.radau5" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5-f2pywrappers.f' to sources.
INFO: building extension "assimulo.lib.radar5" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radar5-f2pywrappers.f' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radar5-f2pywrappers2.f90' to sources.
INFO: building extension "assimulo.lib.odepack" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/odepack/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/odepack' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/odepack/odepack-f2pywrappers.f' to sources.
INFO: building extension "assimulo.lib.odassl" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/odassl/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/odassl' to include_dirs.
INFO: building extension "assimulo.lib.dasp3dp" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/dasp3/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/dasp3' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/dasp3/dasp3dp-f2pywrappers.f' to sources.
INFO: build_src: building npy-pkg config files
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
running build_py
creating build/lib.linux-x86_64-3.10
creating build/lib.linux-x86_64-3.10/assimulo
copying assimulo/problem_algebraic.py -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/exception.py -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/__init__.py -> build/lib.linux-x86_64-3.10/assimulo
creating build/lib.linux-x86_64-3.10/assimulo/lib
copying assimulo/lib/radau_core.py -> build/lib.linux-x86_64-3.10/assimulo/lib
copying assimulo/lib/__init__.py -> build/lib.linux-x86_64-3.10/assimulo/lib
creating build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/odepack.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/glimda.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/dasp3.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/odassl.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/rosenbrock.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/runge_kutta.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/radau5.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/__init__.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/radar5.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
creating build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_jac.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_parameters_modified.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/glimda_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_parameters.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/dasp3_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_preconditioning.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/rungekutta4_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/radau5dae_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/euler_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_basic_backward.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/euler_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/dopri5_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_user_defined_handle_result.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/radau5ode_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_parameters.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_stability.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/radau5dae_time_events.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_gyro.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/radar_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_basic_backward.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/kinsol_ors.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/radau5ode_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_initial_sensitivity.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_jac_spgmr.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/lsodar_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_jac_sparse.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_jac_spgmr.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_jac.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/__init__.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/lsodar_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_parameters_fcn.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/rodasode_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/lsodar_bouncing_ball.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/dopri5_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_initial_sensitivity.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/euler_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/mech_system_pendulum.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/rungekutta34_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/kinsol_with_jac.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/rungekutta34_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/kinsol_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
creating build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/test_examples.py -> build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/test_explicit_ode.py -> build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/test_ode.py -> build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/test_implicit_ode.py -> build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/__init__.py -> build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/test_solvers.py -> build/lib.linux-x86_64-3.10/assimulo/tests
creating build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_kinsol.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_odepack.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_rungekutta.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_sundials.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_odassl.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_radau5.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/__init__.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_glimda.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_rosenbrock.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_euler.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/ode.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/support.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/algebraic.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/explicit_ode.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/implicit_ode.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/problem.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/version.txt -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/CHANGELOG -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/README -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/LICENSE -> build/lib.linux-x86_64-3.10/assimulo
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty/hairer
copying assimulo/thirdparty/hairer/LICENSE_HAIRER -> build/lib.linux-x86_64-3.10/assimulo/thirdparty/hairer
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty/glimda
copying assimulo/thirdparty/glimda/LICENSE_GLIMDA -> build/lib.linux-x86_64-3.10/assimulo/thirdparty/glimda
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty/odepack
copying assimulo/thirdparty/odepack/LICENSE_ODEPACK -> build/lib.linux-x86_64-3.10/assimulo/thirdparty/odepack
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty/odassl
copying assimulo/thirdparty/odassl/LICENSE_ODASSL -> build/lib.linux-x86_64-3.10/assimulo/thirdparty/odassl
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty/dasp3
copying assimulo/thirdparty/dasp3/LICENSE_DASP3 -> build/lib.linux-x86_64-3.10/assimulo/thirdparty/dasp3
copying assimulo/examples/kinsol_ors_matrix.mtx -> build/lib.linux-x86_64-3.10/assimulo/examples
warning: build_py: byte-compiling is disabled, skipping.
running build_ext
INFO: customize UnixCCompiler
INFO: customize UnixCCompiler using build_ext
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-march=native)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
creating /tmp/tmptza6maa8/home
creating /tmp/tmptza6maa8/home/matteius
creating /tmp/tmptza6maa8/home/matteius/.virtualenvs
creating /tmp/tmptza6maa8/home/matteius/.virtualenvs/pipenv-4768-28o65JxR
creating /tmp/tmptza6maa8/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib
creating /tmp/tmptza6maa8/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10
creating /tmp/tmptza6maa8/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages
creating /tmp/tmptza6maa8/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy
creating /tmp/tmptza6maa8/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/distutils
creating /tmp/tmptza6maa8/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/distutils/checks
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-march=native'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-O3)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O3'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-Werror)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-Werror'
INFO: CCompilerOpt.__init__[1709] : check requested baseline
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse2'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE2' with flags (-msse -msse2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE' with flags (-msse -msse2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse3)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse3'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE3' with flags (-msse -msse2 -msse3)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -Werror'
INFO: CCompilerOpt.__init__[1718] : check requested dispatch-able features
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mssse3)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mssse3'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSSE3' with flags (-msse -msse2 -msse3 -mssse3)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse4.1)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse4.1'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mpopcnt)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mpopcnt'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse4.2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse4.2'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'POPCNT' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE41' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE42' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mf16c)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mf16c'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'F16C' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx2'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX2' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2 -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mfma)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mfma'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'FMA3' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512f)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512f'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512F' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512cd)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512cd'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512CD' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512er -mavx512pf)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512er -mavx512pf'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_KNL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_KNM' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512vl -mavx512bw -mavx512dq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512vl -mavx512bw -mavx512dq'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_SKX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512ifma -mavx512vbmi)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512ifma -mavx512vbmi'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_CNL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512ifma -mavx512vbmi)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512ifma -mavx512vbmi -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512vnni)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512vnni'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_CLX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_ICL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -mavx512ifma -mavx512vbmi -mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -mavx512ifma -mavx512vbmi -mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq -Werror'
INFO: CCompilerOpt.__init__[1730] : skip features (SSE SSE3 SSE2) since its part of baseline
INFO: CCompilerOpt.__init__[1734] : initialize targets groups
INFO: CCompilerOpt.__init__[1736] : parse target group simd_test
INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (XOP VSX2 FMA4 ASIMD VSX3 VSX NEON) not part of baseline or dispatch-able features
INFO: CCompilerOpt._parse_policy_not_keepbase[2059] : skip baseline features (SSE2)
INFO: CCompilerOpt.generate_dispatch_header[2280] : generate CPU dispatch header: (build/src.linux-x86_64-3.10/numpy/distutils/include/npy_cpu_dispatch_config.h)
WARN: CCompilerOpt.generate_dispatch_header[2289] : dispatch header dir build/src.linux-x86_64-3.10/numpy/distutils/include does not exist, creating it
INFO: CCompilerOpt.feature_extra_checks[1554] : Testing extra checks for feature 'AVX512F' (AVX512F_REDUCE)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -Werror'
INFO: CCompilerOpt.feature_extra_checks[1554] : Testing extra checks for feature 'AVX512_SKX' (AVX512BW_MASK AVX512DQ_MASK)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
INFO: get_default_fcompiler: matching types: '['arm', 'gnu95', 'intel', 'lahey', 'pg', 'nv', 'absoft', 'nag', 'vast', 'compaq', 'intele', 'intelem', 'gnu', 'g95', 'pathf95', 'nagfor', 'fujitsu']'
INFO: customize ArmFlangCompiler
WARN: Could not locate executable armflang
INFO: customize Gnu95FCompiler
INFO: Found executable /usr/bin/gfortran
INFO: customize Gnu95FCompiler
INFO: customize Gnu95FCompiler using build_ext
INFO: building 'assimulo.algebraic' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
creating build/temp.linux-x86_64-3.10/assimulo
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/algebraic.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/algebraic.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/algebraic.o -o build/lib.linux-x86_64-3.10/assimulo/algebraic.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.explicit_ode' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/explicit_ode.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/explicit_ode.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/explicit_ode.o -o build/lib.linux-x86_64-3.10/assimulo/explicit_ode.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.implicit_ode' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/implicit_ode.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/implicit_ode.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/implicit_ode.o -o build/lib.linux-x86_64-3.10/assimulo/implicit_ode.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.ode' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/ode.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/ode.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/ode.o -o build/lib.linux-x86_64-3.10/assimulo/ode.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.problem' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/problem.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/problem.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/problem.o -o build/lib.linux-x86_64-3.10/assimulo/problem.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.special_systems' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/special_systems.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/special_systems.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/special_systems.o -o build/lib.linux-x86_64-3.10/assimulo/special_systems.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.support' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/support.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/support.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/support.o -o build/lib.linux-x86_64-3.10/assimulo/support.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.solvers.euler' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
creating build/temp.linux-x86_64-3.10/assimulo/solvers
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/solvers/euler.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/solvers/euler.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
assimulo/solvers/euler.c: In function ‘__pyx_f_8assimulo_7solvers_5euler_13ImplicitEuler__step’:
assimulo/solvers/euler.c:8402:12: warning: ‘__pyx_v_old_norm’ may be used uninitialized in this function [-Wmaybe-uninitialized]
8402 | if (unlikely(__pyx_v_old_norm == 0)) {
| ^
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/solvers/euler.o -o build/lib.linux-x86_64-3.10/assimulo/solvers/euler.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.solvers.sundials' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Iassimulo -Iassimulo/lib -I/usr/local/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/solvers/sundials.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/solvers/sundials.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/solvers/sundials.o -L/usr/local/lib -lsundials_cvodes -lsundials_nvecserial -lsundials_idas -o build/lib.linux-x86_64-3.10/assimulo/solvers/sundials.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.solvers.kinsol' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Iassimulo -Iassimulo/lib -I/usr/local/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/solvers/kinsol.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/solvers/kinsol.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/solvers/kinsol.o -L/usr/local/lib -lsundials_kinsol -lsundials_nvecserial -o build/lib.linux-x86_64-3.10/assimulo/solvers/kinsol.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.lib.dopri5' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
creating build/temp.linux-x86_64-3.10/build
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer
INFO: compile options: '-Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3'
INFO: gcc: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c
INFO: gcc: build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.h:13,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c:2:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.h:13,
from build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:20:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c: In function ‘cb_fcn_in_dopcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:511:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
511 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:510:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
510 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c: In function ‘cb_solout_in_dopcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:710:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
710 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:709:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
709 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
At top level:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:204:12: warning: ‘f2py_size’ defined but not used [-Wunused-function]
204 | static int f2py_size(PyArrayObject* var, ...)
| ^~~~~~~~~
INFO: compiling Fortran sources
INFO: Fortran f77 compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran f90 compiler: /usr/bin/gfortran -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran fix compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
creating build/temp.linux-x86_64-3.10/assimulo/thirdparty
creating build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer
INFO: compile options: '-Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
INFO: gfortran:f77: assimulo/thirdparty/hairer/dopri5.f
INFO: gfortran:f77: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5-f2pywrappers.f
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
assimulo/thirdparty/hairer/dopri5.f:249:72:
249 | 16 IWORK(20+I)=I
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 16 at (1)
assimulo/thirdparty/hairer/dopri5.f:422:72:
422 | 22 Y1(I)=Y(I)+H*A21*K1(I)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 22 at (1)
assimulo/thirdparty/hairer/dopri5.f:425:72:
425 | 23 Y1(I)=Y(I)+H*(A31*K1(I)+A32*K2(I))
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 23 at (1)
assimulo/thirdparty/hairer/dopri5.f:428:72:
428 | 24 Y1(I)=Y(I)+H*(A41*K1(I)+A42*K2(I)+A43*K3(I))
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 24 at (1)
assimulo/thirdparty/hairer/dopri5.f:431:72:
431 | 25 Y1(I)=Y(I)+H*(A51*K1(I)+A52*K2(I)+A53*K3(I)+A54*K4(I))
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 25 at (1)
assimulo/thirdparty/hairer/dopri5.f:434:72:
434 | 26 YSTI(I)=Y(I)+H*(A61*K1(I)+A62*K2(I)+A63*K3(I)+A64*K4(I)+A65*K5(I))
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 26 at (1)
assimulo/thirdparty/hairer/dopri5.f:438:72:
438 | 27 Y1(I)=Y(I)+H*(A71*K1(I)+A73*K3(I)+A74*K4(I)+A75*K5(I)+A76*K6(I))
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 27 at (1)
assimulo/thirdparty/hairer/dopri5.f:448:72:
448 | 28 K4(I)=(E1*K1(I)+E3*K3(I)+E4*K4(I)+E5*K5(I)+E6*K6(I)+E7*K2(I))*H
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 28 at (1)
assimulo/thirdparty/hairer/dopri5.f:455:72:
455 | 41 ERR=ERR+(K4(I)/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 41 at (1)
assimulo/thirdparty/hairer/dopri5.f:459:72:
459 | 42 ERR=ERR+(K4(I)/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 42 at (1)
assimulo/thirdparty/hairer/dopri5.f:509:72:
509 | 44 Y(I)=Y1(I)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 44 at (1)
assimulo/thirdparty/hairer/dopri5.f:578:72:
578 | 10 DNY=DNY+(Y(I)/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/dopri5.f:583:72:
583 | 11 DNY=DNY+(Y(I)/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 11 at (1)
assimulo/thirdparty/hairer/dopri5.f:594:72:
594 | 12 Y1(I)=Y(I)+H*F0(I)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 12 at (1)
assimulo/thirdparty/hairer/dopri5.f:601:72:
601 | 15 DER2=DER2+((F1(I)-F0(I))/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 15 at (1)
assimulo/thirdparty/hairer/dopri5.f:605:72:
605 | 16 DER2=DER2+((F1(I)-F0(I))/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 16 at (1)
assimulo/thirdparty/hairer/dopri5.f:558:35:
558 | FUNCTION HINIT(N,FCN,X,Y,XEND,POSNEG,F0,F1,Y1,IORD,
| 1
Warning: Unused dummy argument ‘xend’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/dopri5.f:491:72:
491 | NONSTI=NONSTI+1
| ^
Warning: ‘nonsti’ may be used uninitialized in this function [-Wmaybe-uninitialized]
assimulo/thirdparty/hairer/dopri5.f:637:72:
637 | RETURN
| ^
Warning: ‘__result_contd5’ may be used uninitialized in this function [-Wmaybe-uninitialized]
INFO: /usr/bin/gfortran -Wall -g -Wall -g -shared build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.o build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5-f2pywrappers.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran -o build/lib.linux-x86_64-3.10/assimulo/lib/dopri5.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.lib.rodas' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3'
INFO: gcc: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c
INFO: gcc: build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.h:13,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c:2:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.h:13,
from build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:20:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c: In function ‘cb_fcn_in_roscor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:514:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
514 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:513:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
513 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c: In function ‘cb_jac_in_roscor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:709:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
709 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:708:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
708 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c: In function ‘cb_dfx_in_roscor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:903:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
903 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:902:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
902 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:896:9: warning: variable ‘capi_j’ set but not used [-Wunused-but-set-variable]
896 | int capi_j,capi_i = 0;
| ^~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c: In function ‘cb_mas_in_roscor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:1093:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
1093 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:1092:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
1092 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c: In function ‘cb_solout_in_roscor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:1290:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
1290 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:1289:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
1289 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
At top level:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:207:12: warning: ‘f2py_size’ defined but not used [-Wunused-function]
207 | static int f2py_size(PyArrayObject* var, ...)
| ^~~~~~~~~
INFO: compiling Fortran sources
INFO: Fortran f77 compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran f90 compiler: /usr/bin/gfortran -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran fix compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
INFO: gfortran:f77: assimulo/thirdparty/hairer/rodas_decsol.f
INFO: gfortran:f77: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodas-f2pywrappers.f
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
f951: Warning: Nonconforming tab character in column 1 of line 996 [-Wtabs]
f951: Warning: Nonconforming tab character in column 1 of line 999 [-Wtabs]
f951: Warning: Nonconforming tab character in column 1 of line 1000 [-Wtabs]
assimulo/thirdparty/hairer/rodas_decsol.f:3230:72:
3230 | 623 SUM=SUM+FMAS(I,J)*YNEW(J)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 623 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3231:72:
3231 | 624 AK(I)=AK(I)+SUM
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 624 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3402:72:
3402 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3409:72:
3409 | 40 A(I,J) = A(I,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3449:72:
3449 | 10 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3457:72:
3457 | 30 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3515:72:
3515 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3522:72:
3522 | 40 A(I,J) = A(I,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3564:72:
3564 | 10 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3572:72:
3572 | 30 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3962:72:
3962 | DO 5 I = 1,ML
| 1
Warning: Fortran 2018 deleted feature: Shared DO termination label 5 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3963:72:
3963 | 5 A(I,J) = 0.D0
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 5 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3982:72:
3982 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3998:72:
3998 | 40 A(IJK,J) = A(IJK,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:4044:72:
4044 | 10 B(IMD) = B(IMD) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:4055:72:
4055 | 30 B(IMD) = B(IMD) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:4103:72:
4103 | DO 5 I = 1,ML
| 1
Warning: Fortran 2018 deleted feature: Shared DO termination label 5 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:4350:72:
4350 | 140 a(i,j) = a(i,j) - y * a(m,j)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 140 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:4353:72:
4353 | 150 a(j,m) = a(j,m) + y * a(j,i)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 150 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:1506:58:
1506 | & M1,M2,NM1,FAC1,E1,LDE1,Z1,F1,IP1,IPHES,IER,IJOB)
| 1
Warning: Unused dummy argument ‘ier’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:1716:26:
1716 | & F2,F3,CONT,IP2,IPHES,IER,IJOB)
| 1
Warning: Unused dummy argument ‘cont’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:1716:40:
1716 | & F2,F3,CONT,IP2,IPHES,IER,IJOB)
| 1
Warning: Unused dummy argument ‘ier’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:1995:29:
1995 | & F1,F2,F3,CONT,IP1,IP2,IPHES,IER,IJOB)
| 1
Warning: Unused dummy argument ‘cont’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:1995:47:
1995 | & F1,F2,F3,CONT,IP1,IP2,IPHES,IER,IJOB)
| 1
Warning: Unused dummy argument ‘ier’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:3247:53:
3247 | SUBROUTINE SLVSEU(N,FJAC,LDJAC,MLJAC,MUJAC,FMAS,LDMAS,MLMAS,MUMAS,
| 1
Warning: Unused dummy argument ‘fmas’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:3247:65:
3247 | SUBROUTINE SLVSEU(N,FJAC,LDJAC,MLJAC,MUJAC,FMAS,LDMAS,MLMAS,MUMAS,
| 1
Warning: Unused dummy argument ‘mlmas’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:3247:71:
3247 | SUBROUTINE SLVSEU(N,FJAC,LDJAC,MLJAC,MUJAC,FMAS,LDMAS,MLMAS,MUMAS,
| 1
Warning: Unused dummy argument ‘mumas’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:807:72:
807 | FACGUS=(HACC/H)*(ERR**2/ERRACC)**0.25D0/SAFE
| ^
Warning: ‘hacc’ may be used uninitialized in this function [-Wmaybe-uninitialized]
assimulo/thirdparty/hairer/rodas_decsol.f:807:72: Warning: ‘erracc’ may be used uninitialized in this function [-Wmaybe-uninitialized]
assimulo/thirdparty/hairer/rodas_decsol.f:2349:8:
2349 | 48 MM=M1/M2
| ^
Warning: ‘mm’ may be used uninitialized in this function [-Wmaybe-uninitialized]
assimulo/thirdparty/hairer/rodas_decsol.f:2685:8:
2685 | 48 MM=M1/M2
| ^
Warning: ‘mm’ may be used uninitialized in this function [-Wmaybe-uninitialized]
INFO: /usr/bin/gfortran -Wall -g -Wall -g -shared build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.o build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodas_decsol.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodas-f2pywrappers.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran -o build/lib.linux-x86_64-3.10/assimulo/lib/rodas.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.lib.radau5' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3'
INFO: gcc: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.h:13,
from build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:20:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c: In function ‘cb_fcn_in_radcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:512:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
512 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c: In function ‘cb_jac_in_radcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:722:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
722 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:721:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
721 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c: In function ‘cb_mas_in_radcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:915:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
915 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:914:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
914 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c: In function ‘cb_solout_in_radcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:1112:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
1112 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:1111:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
1111 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
At top level:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:206:12: warning: ‘f2py_size’ defined but not used [-Wunused-function]
206 | static int f2py_size(PyArrayObject* var, ...)
| ^~~~~~~~~
INFO: compiling Fortran sources
INFO: Fortran f77 compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran f90 compiler: /usr/bin/gfortran -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran fix compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
INFO: gfortran:f77: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5-f2pywrappers.fINFO: gfortran:f77: assimulo/thirdparty/hairer/radau_decsol.f
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
assimulo/thirdparty/hairer/radau_decsol.f:1230:72:
1230 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1237:72:
1237 | 40 A(I,J) = A(I,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1277:72:
1277 | 10 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1285:72:
1285 | 30 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1343:72:
1343 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1350:72:
1350 | 40 A(I,J) = A(I,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1392:72:
1392 | 10 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1400:72:
1400 | 30 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1790:72:
1790 | DO 5 I = 1,ML
| 1
Warning: Fortran 2018 deleted feature: Shared DO termination label 5 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1791:72:
1791 | 5 A(I,J) = 0.D0
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 5 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1810:72:
1810 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1826:72:
1826 | 40 A(IJK,J) = A(IJK,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1872:72:
1872 | 10 B(IMD) = B(IMD) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1883:72:
1883 | 30 B(IMD) = B(IMD) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1931:72:
1931 | DO 5 I = 1,ML
| 1
Warning: Fortran 2018 deleted feature: Shared DO termination label 5 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:2178:72:
2178 | 140 a(i,j) = a(i,j) - y * a(m,j)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 140 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:2181:72:
2181 | 150 a(j,m) = a(j,m) + y * a(j,i)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 150 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:4377:72:
4377 | 623 SUM=SUM+FMAS(I,J)*YNEW(J)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 623 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:4378:72:
4378 | 624 AK(I)=AK(I)+SUM
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 624 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:958:25:
958 | & F1,F2,F3,CONT,IP1,IP2,IPHES,IER,IJOB)
| 1
Error: Rank mismatch in argument ‘cont’ at (1) (scalar and rank-1)
INFO: /usr/bin/gfortran -Wall -g -Wall -g -shared build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.o build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau_decsol.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5-f2pywrappers.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran -o build/lib.linux-x86_64-3.10/assimulo/lib/radau5.cpython-310-x86_64-linux-gnu.so
/usr/bin/ld: cannot find build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau_decsol.o: No such file or directory
collect2: error: ld returned 1 exit status
error: Command "/usr/bin/gfortran -Wall -g -Wall -g -shared build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.o build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau_decsol.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5-f2pywrappers.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran -o build/lib.linux-x86_64-3.10/assimulo/lib/radau5.cpython-310-x86_64-linux-gnu.so" failed with exit status 1
INFO:
########### EXT COMPILER OPTIMIZATION ###########
INFO: Platform :
Architecture: x64
Compiler : gcc
CPU baseline :
Requested : 'min'
Enabled : SSE SSE2 SSE3
Flags : -msse -msse2 -msse3
Extra checks: none
CPU dispatch :
Requested : 'max -xop -fma4'
Enabled : SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD AVX512_KNL AVX512_KNM AVX512_SKX AVX512_CLX AVX512_CNL AVX512_ICL
Generated : none
INFO: CCompilerOpt.cache_flush[817] : write cache to path -> /tmp/pip-req-build-xk1b_nve/build/build/temp.linux-x86_64-3.10/ccompiler_opt_cache_ext.py
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for Assimulo
Running setup.py clean for Assimulo
Failed to build Assimulo
Installing collected packages: Assimulo
Running setup.py install for Assimulo ... error
error: subprocess-exited-with-error
× Running setup.py install for Assimulo did not run successfully.
│ exit code: 1
╰─> [1176 lines of output]
DEBUG:setup.py called with the following optional args
{'blas_home': '', 'lapack_home': '', 'mkl_home': '', 'plugins_home': '', 'sundials_home': '', 'superlu_home': '', 'blas_name': 'blas', 'mkl_name': 'mkl', 'extra_c_flags': '', 'with_openmp': False, 'is_static': False, 'sundials_with_superlu': None, 'debug': False, 'force_32bit': False, 'no_msvcr': False, 'log': 'NOTSET', 'log_file': None, 'prefix': None, 'extra_fortran_link_flags': '', 'extra_fortran_link_files': '', 'extra_fortran_compile_flags': '', 'version': 'Default'}
argument parsing completed.
DEBUG:Source from svn revision unknow
DEBUG:Python version used: 3.10.2
DEBUG:Platform linux
WARNING:No path to BLAS supplied, disabling support. View more information using --log=DEBUG
DEBUG:usage: --blas-home=path
DEBUG:Note: the path required is to where the static library lib is found
WARNING:No path to SuperLU supplied, disabling support. View more information using --log=DEBUG
DEBUG:No path to SuperLU supplied, SUNDIALS will not be compiled with support for SuperLU.
DEBUG:usage: --superlu-home=path
DEBUG:Note: the path required is to the folder where the folders 'SRC' and 'lib' are found.
DEBUG:SUNDIALS found.
DEBUG:SUNDIALS 2.6 found.
DEBUG:Could not detect SuperLU support with Sundials, disabling support for SuperLU.
WARNING:No path to LAPACK supplied, disabling support. View more information using --log=DEBUG
DEBUG:usage: --lapack-home=path
DEBUG:Note: the path required is to where the static library lib is found
WARNING:No path to MKL supplied, disabling support. View more information using --log=DEBUG
DEBUG:usage: --mkl-home=path
DEBUG:Note: the path required is to where the static library lib is found
DEBUG:fromdir src todir /tmp/pip-req-build-xk1b_nve/build/assimulo
DEBUG:fromdir src/lib todir /tmp/pip-req-build-xk1b_nve/build/assimulo/lib
DEBUG:fromdir src/solvers todir /tmp/pip-req-build-xk1b_nve/build/assimulo/solvers
DEBUG:fromdir examples todir /tmp/pip-req-build-xk1b_nve/build/assimulo/examples
DEBUG:fromdir None todir /tmp/pip-req-build-xk1b_nve/build
DEBUG:fromdir None todir /tmp/pip-req-build-xk1b_nve/build/assimulo
DEBUG:fromdir tests todir /tmp/pip-req-build-xk1b_nve/build/assimulo/tests
DEBUG:fromdir tests/solvers todir /tmp/pip-req-build-xk1b_nve/build/assimulo/tests/solvers
DEBUG:Thirdparty method hairer file ['contr5.f90', 'dopri5.pyf', 'radau_decsol_error_output.patch', 'dc_decdel.f90', 'rodas_decsol.f', 'radau_decsol.patch', 'radar5.diff', 'rodas_decsol.pyf', 'dopri5.f', 'radar5_int.f90', 'radar5.f90', 'radau_decsol.f', 'decsol.f90', 'radar5.pyf', 'LICENSE_HAIRER', 'dontr5.f90', 'radau_decsol.pyf'] copied
DEBUG:fromdir thirdparty/hairer todir /tmp/pip-req-build-xk1b_nve/build/assimulo/thirdparty/hairer
DEBUG:Thirdparty method glimda file ['LICENSE_GLIMDA', 'glimda_complete.pyf', 'glimda_diff.patch', 'glimda_complete _original.f', 'glimda_complete.f'] copied
DEBUG:fromdir thirdparty/glimda todir /tmp/pip-req-build-xk1b_nve/build/assimulo/thirdparty/glimda
DEBUG:Thirdparty method odepack file ['odepack_aux.f90', 'opkda1.f', 'LICENSE_ODEPACK', 'opkdmain.f', 'odepack.pyf', 'opkda2.f'] copied
DEBUG:fromdir thirdparty/odepack todir /tmp/pip-req-build-xk1b_nve/build/assimulo/thirdparty/odepack
DEBUG:Thirdparty method odassl file ['odassl.pyf', 'read.me', 'LICENSE_ODASSL', 'demo.f', 'ddanrm.f', 'xerrwv.f', 'ddot.f', 'odassl.f', 'odajac.f', 'ddatrp.f', 'odacor.f', 'dscal.f', 'idamax.f', 'a.out', 'readme_f2py.txt', 'test_odassl.py', 'dgefa.f', 'd1mach.f', 'dgesl.f', 'test.txt', 'ddwats.f', 'daxpy.f', 'odastp.f'] copied
DEBUG:fromdir thirdparty/odassl todir /tmp/pip-req-build-xk1b_nve/build/assimulo/thirdparty/odassl
DEBUG:Thirdparty method dasp3 file ['DASP3_MAIN.FOR', 'test_dasp3dp.py', 'SOLVE.f', 'INIVAL.f', 'PREPOL.f', 'DECOMP.f', 'PDERIV.f', 'SPAPAT.f', 'test_dasp3.py', 'dasp3dp.pyf', 'HMAX.f', 'LICENSE_DASP3', 'JACEST.f', 'CTRACT.f', 'ANORM.f', 'DASP3.f', 'dasp3.pyf', 'how-to-f2py.txt'] copied
DEBUG:fromdir thirdparty/dasp3 todir /tmp/pip-req-build-xk1b_nve/build/assimulo/thirdparty/dasp3
[1/1] Cythonizing assimulo/solvers/sundials.pyx
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-req-build-xk1b_nve/build/assimulo/solvers/sundials.pyx
tree = Parsing.p_module(s, pxd, full_module_name)
[1/1] Cythonizing assimulo/solvers/kinsol.pyx
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-req-build-xk1b_nve/build/assimulo/solvers/kinsol.pyx
tree = Parsing.p_module(s, pxd, full_module_name)
WARNING:Could not find Blas or Lapack, disabling support for the solver GLIMDA.
DEBUG:['thirdparty/hairer/LICENSE_HAIRER', 'lib/hairer/LICENSE_HAIRER', 'thirdparty/glimda/LICENSE_GLIMDA', 'lib/glimda/LICENSE_GLIMDA', 'thirdparty/odepack/LICENSE_ODEPACK', 'lib/odepack/LICENSE_ODEPACK', 'thirdparty/odassl/LICENSE_ODASSL', 'lib/odassl/LICENSE_ODASSL', 'thirdparty/dasp3/LICENSE_DASP3', 'lib/dasp3/LICENSE_DASP3']
running install
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
running build
running config_cc
INFO: unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
INFO: unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
INFO: build_src
INFO: building extension "assimulo.algebraic" sources
INFO: building extension "assimulo.explicit_ode" sources
INFO: building extension "assimulo.implicit_ode" sources
INFO: building extension "assimulo.ode" sources
INFO: building extension "assimulo.problem" sources
INFO: building extension "assimulo.special_systems" sources
INFO: building extension "assimulo.support" sources
INFO: building extension "assimulo.solvers.euler" sources
INFO: building extension "assimulo.solvers.sundials" sources
INFO: building extension "assimulo.solvers.kinsol" sources
INFO: building extension "assimulo.lib.dopri5" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5-f2pywrappers.f' to sources.
INFO: building extension "assimulo.lib.rodas" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodas-f2pywrappers.f' to sources.
INFO: building extension "assimulo.lib.radau5" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5-f2pywrappers.f' to sources.
INFO: building extension "assimulo.lib.radar5" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radar5-f2pywrappers.f' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radar5-f2pywrappers2.f90' to sources.
INFO: building extension "assimulo.lib.odepack" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/odepack/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/odepack' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/odepack/odepack-f2pywrappers.f' to sources.
INFO: building extension "assimulo.lib.odassl" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/odassl/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/odassl' to include_dirs.
INFO: building extension "assimulo.lib.dasp3dp" sources
INFO: f2py options: []
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/dasp3/fortranobject.c' to sources.
INFO: adding 'build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/dasp3' to include_dirs.
INFO: adding 'build/src.linux-x86_64-3.10/assimulo/thirdparty/dasp3/dasp3dp-f2pywrappers.f' to sources.
INFO: build_src: building npy-pkg config files
running build_py
creating build/lib.linux-x86_64-3.10
creating build/lib.linux-x86_64-3.10/assimulo
copying assimulo/problem_algebraic.py -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/exception.py -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/__init__.py -> build/lib.linux-x86_64-3.10/assimulo
creating build/lib.linux-x86_64-3.10/assimulo/lib
copying assimulo/lib/radau_core.py -> build/lib.linux-x86_64-3.10/assimulo/lib
copying assimulo/lib/__init__.py -> build/lib.linux-x86_64-3.10/assimulo/lib
creating build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/odepack.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/glimda.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/dasp3.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/odassl.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/rosenbrock.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/runge_kutta.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/radau5.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/__init__.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
copying assimulo/solvers/radar5.py -> build/lib.linux-x86_64-3.10/assimulo/solvers
creating build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_jac.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_parameters_modified.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/glimda_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_parameters.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/dasp3_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_preconditioning.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/rungekutta4_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/radau5dae_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/euler_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_basic_backward.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/euler_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/dopri5_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_user_defined_handle_result.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/radau5ode_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_parameters.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_stability.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/radau5dae_time_events.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_gyro.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/radar_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_basic_backward.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/kinsol_ors.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/radau5ode_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_initial_sensitivity.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_jac_spgmr.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/lsodar_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_jac_sparse.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_jac_spgmr.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_jac.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/__init__.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/lsodar_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/cvode_with_parameters_fcn.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/rodasode_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/lsodar_bouncing_ball.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/dopri5_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/ida_with_initial_sensitivity.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/euler_vanderpol.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/mech_system_pendulum.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/rungekutta34_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/kinsol_with_jac.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/rungekutta34_with_disc.py -> build/lib.linux-x86_64-3.10/assimulo/examples
copying assimulo/examples/kinsol_basic.py -> build/lib.linux-x86_64-3.10/assimulo/examples
creating build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/test_examples.py -> build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/test_explicit_ode.py -> build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/test_ode.py -> build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/test_implicit_ode.py -> build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/__init__.py -> build/lib.linux-x86_64-3.10/assimulo/tests
copying assimulo/tests/test_solvers.py -> build/lib.linux-x86_64-3.10/assimulo/tests
creating build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_kinsol.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_odepack.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_rungekutta.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_sundials.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_odassl.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_radau5.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/__init__.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_glimda.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_rosenbrock.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/tests/solvers/test_euler.py -> build/lib.linux-x86_64-3.10/assimulo/tests/solvers
copying assimulo/ode.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/support.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/algebraic.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/explicit_ode.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/implicit_ode.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/problem.pxd -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/version.txt -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/CHANGELOG -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/README -> build/lib.linux-x86_64-3.10/assimulo
copying assimulo/LICENSE -> build/lib.linux-x86_64-3.10/assimulo
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty/hairer
copying assimulo/thirdparty/hairer/LICENSE_HAIRER -> build/lib.linux-x86_64-3.10/assimulo/thirdparty/hairer
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty/glimda
copying assimulo/thirdparty/glimda/LICENSE_GLIMDA -> build/lib.linux-x86_64-3.10/assimulo/thirdparty/glimda
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty/odepack
copying assimulo/thirdparty/odepack/LICENSE_ODEPACK -> build/lib.linux-x86_64-3.10/assimulo/thirdparty/odepack
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty/odassl
copying assimulo/thirdparty/odassl/LICENSE_ODASSL -> build/lib.linux-x86_64-3.10/assimulo/thirdparty/odassl
creating build/lib.linux-x86_64-3.10/assimulo/thirdparty/dasp3
copying assimulo/thirdparty/dasp3/LICENSE_DASP3 -> build/lib.linux-x86_64-3.10/assimulo/thirdparty/dasp3
copying assimulo/examples/kinsol_ors_matrix.mtx -> build/lib.linux-x86_64-3.10/assimulo/examples
warning: build_py: byte-compiling is disabled, skipping.
running build_ext
INFO: customize UnixCCompiler
INFO: customize UnixCCompiler using build_ext
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-march=native)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
creating /tmp/tmp6wh4dl8x/home
creating /tmp/tmp6wh4dl8x/home/matteius
creating /tmp/tmp6wh4dl8x/home/matteius/.virtualenvs
creating /tmp/tmp6wh4dl8x/home/matteius/.virtualenvs/pipenv-4768-28o65JxR
creating /tmp/tmp6wh4dl8x/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib
creating /tmp/tmp6wh4dl8x/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10
creating /tmp/tmp6wh4dl8x/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages
creating /tmp/tmp6wh4dl8x/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy
creating /tmp/tmp6wh4dl8x/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/distutils
creating /tmp/tmp6wh4dl8x/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/distutils/checks
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-march=native'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-O3)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O3'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-Werror)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-Werror'
INFO: CCompilerOpt.__init__[1709] : check requested baseline
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse2'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE2' with flags (-msse -msse2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE' with flags (-msse -msse2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse3)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse3'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE3' with flags (-msse -msse2 -msse3)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -Werror'
INFO: CCompilerOpt.__init__[1718] : check requested dispatch-able features
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mssse3)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mssse3'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse4.1)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse4.1'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mpopcnt)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mpopcnt'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse4.2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse4.2'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSSE3' with flags (-msse -msse2 -msse3 -mssse3)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mf16c)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mf16c'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mfma)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mfma'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'FMA3' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx2'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512f)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512f'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512cd)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512cd'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512er -mavx512pf)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512er -mavx512pf'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_KNL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512CD' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512F' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'F16C' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'POPCNT' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE41' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX2' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2 -Werror'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE42' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_KNM' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512vl -mavx512bw -mavx512dq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512vl -mavx512bw -mavx512dq'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_SKX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512vnni)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512vnni'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_CLX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512ifma -mavx512vbmi)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512ifma -mavx512vbmi'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_CNL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512ifma -mavx512vbmi)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512ifma -mavx512vbmi -Werror'
INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq'
INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_ICL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -mavx512ifma -mavx512vbmi -mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -mavx512ifma -mavx512vbmi -mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq -Werror'
INFO: CCompilerOpt.__init__[1730] : skip features (SSE3 SSE2 SSE) since its part of baseline
INFO: CCompilerOpt.__init__[1734] : initialize targets groups
INFO: CCompilerOpt.__init__[1736] : parse target group simd_test
INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (NEON VSX3 VSX2 FMA4 XOP ASIMD VSX) not part of baseline or dispatch-able features
INFO: CCompilerOpt._parse_policy_not_keepbase[2059] : skip baseline features (SSE2)
INFO: CCompilerOpt.generate_dispatch_header[2280] : generate CPU dispatch header: (build/src.linux-x86_64-3.10/numpy/distutils/include/npy_cpu_dispatch_config.h)
INFO: CCompilerOpt.feature_extra_checks[1554] : Testing extra checks for feature 'AVX512F' (AVX512F_REDUCE)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -Werror'
INFO: CCompilerOpt.feature_extra_checks[1554] : Testing extra checks for feature 'AVX512_SKX' (AVX512BW_MASK AVX512DQ_MASK)
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
INFO: get_default_fcompiler: matching types: '['arm', 'gnu95', 'intel', 'lahey', 'pg', 'nv', 'absoft', 'nag', 'vast', 'compaq', 'intele', 'intelem', 'gnu', 'g95', 'pathf95', 'nagfor', 'fujitsu']'
INFO: customize ArmFlangCompiler
WARN: Could not locate executable armflang
INFO: customize Gnu95FCompiler
INFO: Found executable /usr/bin/gfortran
INFO: customize Gnu95FCompiler
INFO: customize Gnu95FCompiler using build_ext
INFO: building 'assimulo.algebraic' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
creating build/temp.linux-x86_64-3.10/assimulo
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/algebraic.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/algebraic.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/algebraic.o -o build/lib.linux-x86_64-3.10/assimulo/algebraic.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.explicit_ode' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/explicit_ode.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/explicit_ode.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/explicit_ode.o -o build/lib.linux-x86_64-3.10/assimulo/explicit_ode.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.implicit_ode' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/implicit_ode.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/implicit_ode.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/implicit_ode.o -o build/lib.linux-x86_64-3.10/assimulo/implicit_ode.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.ode' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/ode.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/ode.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/ode.o -o build/lib.linux-x86_64-3.10/assimulo/ode.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.problem' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/problem.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/problem.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/problem.o -o build/lib.linux-x86_64-3.10/assimulo/problem.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.special_systems' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/special_systems.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/special_systems.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/special_systems.o -o build/lib.linux-x86_64-3.10/assimulo/special_systems.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.support' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/support.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/support.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/support.o -o build/lib.linux-x86_64-3.10/assimulo/support.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.solvers.euler' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
creating build/temp.linux-x86_64-3.10/assimulo/solvers
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/solvers/euler.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/solvers/euler.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
assimulo/solvers/euler.c: In function ‘__pyx_f_8assimulo_7solvers_5euler_13ImplicitEuler__step’:
assimulo/solvers/euler.c:8402:12: warning: ‘__pyx_v_old_norm’ may be used uninitialized in this function [-Wmaybe-uninitialized]
8402 | if (unlikely(__pyx_v_old_norm == 0)) {
| ^
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/solvers/euler.o -o build/lib.linux-x86_64-3.10/assimulo/solvers/euler.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.solvers.sundials' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Iassimulo -Iassimulo/lib -I/usr/local/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/solvers/sundials.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/solvers/sundials.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/solvers/sundials.o -L/usr/local/lib -lsundials_cvodes -lsundials_nvecserial -lsundials_idas -o build/lib.linux-x86_64-3.10/assimulo/solvers/sundials.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.solvers.kinsol' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Iassimulo -Iassimulo/lib -I/usr/local/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-O2 -fno-strict-aliasing -msse -msse2 -msse3'
INFO: gcc: assimulo/solvers/kinsol.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from assimulo/solvers/kinsol.c:700:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
INFO: gcc -shared -L/home/matteius/.pyenv/versions/3.10.2/lib -L/home/matteius/.pyenv/versions/3.10.2/lib build/temp.linux-x86_64-3.10/assimulo/solvers/kinsol.o -L/usr/local/lib -lsundials_kinsol -lsundials_nvecserial -o build/lib.linux-x86_64-3.10/assimulo/solvers/kinsol.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.lib.dopri5' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
creating build/temp.linux-x86_64-3.10/build
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty
creating build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer
INFO: compile options: '-Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3'
INFO: gcc: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c
INFO: gcc: build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.h:13,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c:2:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.h:13,
from build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:20:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c: In function ‘cb_fcn_in_dopcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:511:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
511 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:510:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
510 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c: In function ‘cb_solout_in_dopcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:710:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
710 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:709:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
709 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
At top level:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.c:204:12: warning: ‘f2py_size’ defined but not used [-Wunused-function]
204 | static int f2py_size(PyArrayObject* var, ...)
| ^~~~~~~~~
INFO: compiling Fortran sources
INFO: Fortran f77 compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran f90 compiler: /usr/bin/gfortran -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran fix compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
creating build/temp.linux-x86_64-3.10/assimulo/thirdparty
creating build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer
INFO: compile options: '-Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
INFO: gfortran:f77: assimulo/thirdparty/hairer/dopri5.f
INFO: gfortran:f77: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5-f2pywrappers.f
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
assimulo/thirdparty/hairer/dopri5.f:249:72:
249 | 16 IWORK(20+I)=I
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 16 at (1)
assimulo/thirdparty/hairer/dopri5.f:422:72:
422 | 22 Y1(I)=Y(I)+H*A21*K1(I)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 22 at (1)
assimulo/thirdparty/hairer/dopri5.f:425:72:
425 | 23 Y1(I)=Y(I)+H*(A31*K1(I)+A32*K2(I))
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 23 at (1)
assimulo/thirdparty/hairer/dopri5.f:428:72:
428 | 24 Y1(I)=Y(I)+H*(A41*K1(I)+A42*K2(I)+A43*K3(I))
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 24 at (1)
assimulo/thirdparty/hairer/dopri5.f:431:72:
431 | 25 Y1(I)=Y(I)+H*(A51*K1(I)+A52*K2(I)+A53*K3(I)+A54*K4(I))
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 25 at (1)
assimulo/thirdparty/hairer/dopri5.f:434:72:
434 | 26 YSTI(I)=Y(I)+H*(A61*K1(I)+A62*K2(I)+A63*K3(I)+A64*K4(I)+A65*K5(I))
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 26 at (1)
assimulo/thirdparty/hairer/dopri5.f:438:72:
438 | 27 Y1(I)=Y(I)+H*(A71*K1(I)+A73*K3(I)+A74*K4(I)+A75*K5(I)+A76*K6(I))
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 27 at (1)
assimulo/thirdparty/hairer/dopri5.f:448:72:
448 | 28 K4(I)=(E1*K1(I)+E3*K3(I)+E4*K4(I)+E5*K5(I)+E6*K6(I)+E7*K2(I))*H
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 28 at (1)
assimulo/thirdparty/hairer/dopri5.f:455:72:
455 | 41 ERR=ERR+(K4(I)/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 41 at (1)
assimulo/thirdparty/hairer/dopri5.f:459:72:
459 | 42 ERR=ERR+(K4(I)/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 42 at (1)
assimulo/thirdparty/hairer/dopri5.f:509:72:
509 | 44 Y(I)=Y1(I)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 44 at (1)
assimulo/thirdparty/hairer/dopri5.f:578:72:
578 | 10 DNY=DNY+(Y(I)/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/dopri5.f:583:72:
583 | 11 DNY=DNY+(Y(I)/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 11 at (1)
assimulo/thirdparty/hairer/dopri5.f:594:72:
594 | 12 Y1(I)=Y(I)+H*F0(I)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 12 at (1)
assimulo/thirdparty/hairer/dopri5.f:601:72:
601 | 15 DER2=DER2+((F1(I)-F0(I))/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 15 at (1)
assimulo/thirdparty/hairer/dopri5.f:605:72:
605 | 16 DER2=DER2+((F1(I)-F0(I))/SK)**2
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 16 at (1)
assimulo/thirdparty/hairer/dopri5.f:558:35:
558 | FUNCTION HINIT(N,FCN,X,Y,XEND,POSNEG,F0,F1,Y1,IORD,
| 1
Warning: Unused dummy argument ‘xend’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/dopri5.f:491:72:
491 | NONSTI=NONSTI+1
| ^
Warning: ‘nonsti’ may be used uninitialized in this function [-Wmaybe-uninitialized]
assimulo/thirdparty/hairer/dopri5.f:637:72:
637 | RETURN
| ^
Warning: ‘__result_contd5’ may be used uninitialized in this function [-Wmaybe-uninitialized]
INFO: /usr/bin/gfortran -Wall -g -Wall -g -shared build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5module.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.o build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/dopri5-f2pywrappers.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran -o build/lib.linux-x86_64-3.10/assimulo/lib/dopri5.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.lib.rodas' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3'
INFO: gcc: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c
INFO: gcc: build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.h:13,
from build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:20:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.h:13,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.c:2:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c: In function ‘cb_fcn_in_roscor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:514:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
514 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:513:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
513 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c: In function ‘cb_jac_in_roscor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:709:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
709 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:708:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
708 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c: In function ‘cb_dfx_in_roscor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:903:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
903 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:902:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
902 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:896:9: warning: variable ‘capi_j’ set but not used [-Wunused-but-set-variable]
896 | int capi_j,capi_i = 0;
| ^~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c: In function ‘cb_mas_in_roscor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:1093:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
1093 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:1092:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
1092 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c: In function ‘cb_solout_in_roscor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:1290:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
1290 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:1289:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
1289 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
At top level:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.c:207:12: warning: ‘f2py_size’ defined but not used [-Wunused-function]
207 | static int f2py_size(PyArrayObject* var, ...)
| ^~~~~~~~~
INFO: compiling Fortran sources
INFO: Fortran f77 compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran f90 compiler: /usr/bin/gfortran -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran fix compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
INFO: gfortran:f77: assimulo/thirdparty/hairer/rodas_decsol.f
INFO: gfortran:f77: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodas-f2pywrappers.f
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
f951: Warning: Nonconforming tab character in column 1 of line 996 [-Wtabs]
f951: Warning: Nonconforming tab character in column 1 of line 999 [-Wtabs]
f951: Warning: Nonconforming tab character in column 1 of line 1000 [-Wtabs]
assimulo/thirdparty/hairer/rodas_decsol.f:3230:72:
3230 | 623 SUM=SUM+FMAS(I,J)*YNEW(J)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 623 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3231:72:
3231 | 624 AK(I)=AK(I)+SUM
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 624 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3402:72:
3402 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3409:72:
3409 | 40 A(I,J) = A(I,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3449:72:
3449 | 10 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3457:72:
3457 | 30 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3515:72:
3515 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3522:72:
3522 | 40 A(I,J) = A(I,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3564:72:
3564 | 10 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3572:72:
3572 | 30 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3962:72:
3962 | DO 5 I = 1,ML
| 1
Warning: Fortran 2018 deleted feature: Shared DO termination label 5 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3963:72:
3963 | 5 A(I,J) = 0.D0
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 5 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3982:72:
3982 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:3998:72:
3998 | 40 A(IJK,J) = A(IJK,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:4044:72:
4044 | 10 B(IMD) = B(IMD) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:4055:72:
4055 | 30 B(IMD) = B(IMD) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:4103:72:
4103 | DO 5 I = 1,ML
| 1
Warning: Fortran 2018 deleted feature: Shared DO termination label 5 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:4350:72:
4350 | 140 a(i,j) = a(i,j) - y * a(m,j)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 140 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:4353:72:
4353 | 150 a(j,m) = a(j,m) + y * a(j,i)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 150 at (1)
assimulo/thirdparty/hairer/rodas_decsol.f:1506:58:
1506 | & M1,M2,NM1,FAC1,E1,LDE1,Z1,F1,IP1,IPHES,IER,IJOB)
| 1
Warning: Unused dummy argument ‘ier’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:1716:26:
1716 | & F2,F3,CONT,IP2,IPHES,IER,IJOB)
| 1
Warning: Unused dummy argument ‘cont’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:1716:40:
1716 | & F2,F3,CONT,IP2,IPHES,IER,IJOB)
| 1
Warning: Unused dummy argument ‘ier’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:1995:29:
1995 | & F1,F2,F3,CONT,IP1,IP2,IPHES,IER,IJOB)
| 1
Warning: Unused dummy argument ‘cont’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:1995:47:
1995 | & F1,F2,F3,CONT,IP1,IP2,IPHES,IER,IJOB)
| 1
Warning: Unused dummy argument ‘ier’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:3247:53:
3247 | SUBROUTINE SLVSEU(N,FJAC,LDJAC,MLJAC,MUJAC,FMAS,LDMAS,MLMAS,MUMAS,
| 1
Warning: Unused dummy argument ‘fmas’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:3247:65:
3247 | SUBROUTINE SLVSEU(N,FJAC,LDJAC,MLJAC,MUJAC,FMAS,LDMAS,MLMAS,MUMAS,
| 1
Warning: Unused dummy argument ‘mlmas’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:3247:71:
3247 | SUBROUTINE SLVSEU(N,FJAC,LDJAC,MLJAC,MUJAC,FMAS,LDMAS,MLMAS,MUMAS,
| 1
Warning: Unused dummy argument ‘mumas’ at (1) [-Wunused-dummy-argument]
assimulo/thirdparty/hairer/rodas_decsol.f:807:72:
807 | FACGUS=(HACC/H)*(ERR**2/ERRACC)**0.25D0/SAFE
| ^
Warning: ‘hacc’ may be used uninitialized in this function [-Wmaybe-uninitialized]
assimulo/thirdparty/hairer/rodas_decsol.f:807:72: Warning: ‘erracc’ may be used uninitialized in this function [-Wmaybe-uninitialized]
assimulo/thirdparty/hairer/rodas_decsol.f:2349:8:
2349 | 48 MM=M1/M2
| ^
Warning: ‘mm’ may be used uninitialized in this function [-Wmaybe-uninitialized]
assimulo/thirdparty/hairer/rodas_decsol.f:2685:8:
2685 | 48 MM=M1/M2
| ^
Warning: ‘mm’ may be used uninitialized in this function [-Wmaybe-uninitialized]
INFO: /usr/bin/gfortran -Wall -g -Wall -g -shared build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodasmodule.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.o build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodas_decsol.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/rodas-f2pywrappers.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran -o build/lib.linux-x86_64-3.10/assimulo/lib/rodas.cpython-310-x86_64-linux-gnu.so
INFO: building 'assimulo.lib.radau5' extension
INFO: compiling C sources
INFO: C compiler: gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
extra options: '-msse -msse2 -msse3'
INFO: gcc: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c
In file included from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h:1960,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h:5,
from build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.h:13,
from build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:20:
/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
17 | #warning "Using deprecated NumPy API, disable it with " \
| ^~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c: In function ‘cb_fcn_in_radcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:512:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
512 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c: In function ‘cb_jac_in_radcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:722:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
722 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:721:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
721 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c: In function ‘cb_mas_in_radcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:915:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
915 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:914:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
914 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c: In function ‘cb_solout_in_radcor__user__routines’:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:1112:14: warning: variable ‘ipar_Dims’ set but not used [-Wunused-but-set-variable]
1112 | npy_intp ipar_Dims[1] = {-1};
| ^~~~~~~~~
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:1111:14: warning: variable ‘rpar_Dims’ set but not used [-Wunused-but-set-variable]
1111 | npy_intp rpar_Dims[1] = {-1};
| ^~~~~~~~~
At top level:
build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.c:206:12: warning: ‘f2py_size’ defined but not used [-Wunused-function]
206 | static int f2py_size(PyArrayObject* var, ...)
| ^~~~~~~~~
INFO: compiling Fortran sources
INFO: Fortran f77 compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran f90 compiler: /usr/bin/gfortran -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
Fortran fix compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -Wall -g -fno-second-underscore -fPIC -O3 -funroll-loops
INFO: compile options: '-I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/lib/python3.10/site-packages/numpy/core/include -Ibuild/src.linux-x86_64-3.10/numpy/distutils/include -I/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include -I/home/matteius/.pyenv/versions/3.10.2/include/python3.10 -c'
INFO: gfortran:f77: assimulo/thirdparty/hairer/radau_decsol.fINFO: gfortran:f77: build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5-f2pywrappers.f
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
f951: Warning: Nonexistent include directory ‘/home/matteius/.virtualenvs/pipenv-4768-28o65JxR/include’ [-Wmissing-include-dirs]
assimulo/thirdparty/hairer/radau_decsol.f:1230:72:
1230 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1237:72:
1237 | 40 A(I,J) = A(I,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1277:72:
1277 | 10 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1285:72:
1285 | 30 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1343:72:
1343 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1350:72:
1350 | 40 A(I,J) = A(I,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1392:72:
1392 | 10 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1400:72:
1400 | 30 B(I) = B(I) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1790:72:
1790 | DO 5 I = 1,ML
| 1
Warning: Fortran 2018 deleted feature: Shared DO termination label 5 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1791:72:
1791 | 5 A(I,J) = 0.D0
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 5 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1810:72:
1810 | 30 A(I,K) = -A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1826:72:
1826 | 40 A(IJK,J) = A(IJK,J) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 40 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1872:72:
1872 | 10 B(IMD) = B(IMD) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 10 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1883:72:
1883 | 30 B(IMD) = B(IMD) + A(I,K)*T
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 30 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:1931:72:
1931 | DO 5 I = 1,ML
| 1
Warning: Fortran 2018 deleted feature: Shared DO termination label 5 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:2178:72:
2178 | 140 a(i,j) = a(i,j) - y * a(m,j)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 140 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:2181:72:
2181 | 150 a(j,m) = a(j,m) + y * a(j,i)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 150 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:4377:72:
4377 | 623 SUM=SUM+FMAS(I,J)*YNEW(J)
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 623 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:4378:72:
4378 | 624 AK(I)=AK(I)+SUM
| 1
Warning: Fortran 2018 deleted feature: DO termination statement which is not END DO or CONTINUE with label 624 at (1)
assimulo/thirdparty/hairer/radau_decsol.f:958:25:
958 | & F1,F2,F3,CONT,IP1,IP2,IPHES,IER,IJOB)
| 1
Error: Rank mismatch in argument ‘cont’ at (1) (scalar and rank-1)
INFO: /usr/bin/gfortran -Wall -g -Wall -g -shared build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.o build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau_decsol.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5-f2pywrappers.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran -o build/lib.linux-x86_64-3.10/assimulo/lib/radau5.cpython-310-x86_64-linux-gnu.so
/usr/bin/ld: cannot find build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau_decsol.o: No such file or directory
collect2: error: ld returned 1 exit status
error: Command "/usr/bin/gfortran -Wall -g -Wall -g -shared build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5module.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/fortranobject.o build/temp.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau_decsol.o build/temp.linux-x86_64-3.10/build/src.linux-x86_64-3.10/assimulo/thirdparty/hairer/radau5-f2pywrappers.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran -o build/lib.linux-x86_64-3.10/assimulo/lib/radau5.cpython-310-x86_64-linux-gnu.so" failed with exit status 1
INFO:
########### EXT COMPILER OPTIMIZATION ###########
INFO: Platform :
Architecture: x64
Compiler : gcc
CPU baseline :
Requested : 'min'
Enabled : SSE SSE2 SSE3
Flags : -msse -msse2 -msse3
Extra checks: none
CPU dispatch :
Requested : 'max -xop -fma4'
Enabled : SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD AVX512_KNL AVX512_KNM AVX512_SKX AVX512_CLX AVX512_CNL AVX512_ICL
Generated : none
INFO: CCompilerOpt.cache_flush[817] : write cache to path -> /tmp/pip-req-build-xk1b_nve/build/build/temp.linux-x86_64-3.10/ccompiler_opt_cache_ext.py
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: legacy-install-failure
× Encountered error while trying to install package.
╰─> Assimulo
note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
The Dockerfile worked as of a few weeks ago. We may have used any older release of pip.
I try downgrading numpy but I still get the compiler errors about Error: Rank mismatch in argument ‘cont’ at (1) (scalar and rank-1)
I am on Ubuntu 21.10
@jonrkarr Since I am clearly having some kind of fortran compilation issues with that library, could you try your build out using this branch of pipenv so we know if there is hope for the new pip resolver and dependencies fixing this particular issue? That branch is: https://github.com/pypa/pipenv/pull/4969
If you are testing it locally, I like to run python setup.py develop --user
to install a checked out copy, but there is more than one way.
@jonrkarr I am going to close this for now but we can revisit if still an issue -- pipenv==2022.4.21
is released which has the latest pip==22.0.4
In some cases, its necessary to install packages from VCS. Unfortunately, some packages fail to install without clear explanations.
Issue description
For example, the following command results in the error below
Expected result
The package installs or a clear error message is provided.
Actual result
The command above results in this error:
Steps to replicate
$ pipenv --support
Pipenv version: `'2021.5.29'` Pipenv location: `'/home/jonrkarr/.local/lib/python3.9/site-packages/pipenv'` Python location: `'/usr/bin/python3.9'` Python installations found: - `3.9.5`: `/usr/bin/python3.9` - `3.7.5`: `/usr/local/bin/python3.7` - `3.7.5`: `/usr/local/bin/python3` - `3.7.5`: `/usr/local/bin/python3.7m` - `3.7.4`: `/opt/gurobi900/linux64/bin/python3.7` - `3.6.9`: `/usr/bin/python3` - `3.6.9`: `/usr/bin/python3.6m` - `3.6.9`: `/usr/bin/python3.6` - `2.7.17`: `/usr/bin/python2.7` - `2.7.17`: `/usr/bin/python2` PEP 508 Information: ``` {'implementation_name': 'cpython', 'implementation_version': '3.9.5', 'os_name': 'posix', 'platform_machine': 'x86_64', 'platform_python_implementation': 'CPython', 'platform_release': '4.15.0-54-generic', 'platform_system': 'Linux', 'platform_version': '#58-Ubuntu SMP Mon Jun 24 10:55:24 UTC 2019', 'python_full_version': '3.9.5', 'python_version': '3.9', 'sys_platform': 'linux'} ``` System environment variables: - `NVM_DIR` - `LD_LIBRARY_PATH` - `LS_COLORS` - `LESSCLOSE` - `CINNAMON_SLOWDOWN_FACTOR` - `LANG` - `GDM_LANG` - `DISPLAY` - `GPG_TTY` - `GTK_OVERLAY_SCROLLING` - `COLORTERM` - `NVM_CD_FLAGS` - `JAVA_HOME` - `XDG_VTNR` - `SSH_AUTH_SOCK` - `MANDATORY_PATH` - `CLASSPATH` - `XDG_SESSION_ID` - `XDG_GREETER_DATA_DIR` - `USER` - `DESKTOP_SESSION` - `GNOME_TERMINAL_SCREEN` - `DEFAULTS_PATH` - `QT_QPA_PLATFORMTHEME` - `PWD` - `HOME` - `SSH_AGENT_PID` - `QT_ACCESSIBILITY` - `XDG_SESSION_TYPE` - `GUROBI_HOME` - `XDG_DATA_DIRS` - `XDG_SESSION_DESKTOP` - `GJS_DEBUG_OUTPUT` - `GTK_MODULES` - `TERM` - `SHELL` - `VTE_VERSION` - `XDG_SEAT_PATH` - `NVM_BIN` - `XDG_CURRENT_DESKTOP` - `GPG_AGENT_INFO` - `GNOME_TERMINAL_SERVICE` - `XDG_SEAT` - `SHLVL` - `LANGUAGE` - `GDMSESSION` - `GNOME_DESKTOP_SESSION_ID` - `LOGNAME` - `DBUS_SESSION_BUS_ADDRESS` - `XDG_RUNTIME_DIR` - `XAUTHORITY` - `XDG_SESSION_PATH` - `XDG_CONFIG_DIRS` - `PATH` - `CINNAMON_VERSION` - `NVM_INC` - `GJS_DEBUG_TOPICS` - `SESSION_MANAGER` - `CINNAMON_SOFTWARE_RENDERING` - `LESSOPEN` - `_` - `PIP_DISABLE_PIP_VERSION_CHECK` - `PYTHONDONTWRITEBYTECODE` - `PIP_SHIMS_BASE_MODULE` - `PIP_PYTHON_PATH` - `PYTHONFINDER_IGNORE_UNSUPPORTED` Pipenv–specific environment variables: Debug–specific environment variables: - `PATH`: `/home/jonrkarr/.local/share/colomoto/bin:/opt/OpenCOR-2021-05-19:/opt/sbfc-1.3.7:/opt/dockstore:/home/jonrkarr/google-cloud-sdk/bin:/home/jonrkarr/.nvm/versions/node/v12.18.1/bin:/home/jonrkarr/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/opt/gurobi900/linux64/bin:/snap/bin:/opt/BioNetGen-2.6.0:/usr/local/go/bin` - `SHELL`: `/bin/bash` - `LANG`: `en_US.UTF-8` - `PWD`: `/home/jonrkarr/Documents/Biosimulations` --------------------------- Contents of `Pipfile` ('/home/jonrkarr/Documents/Biosimulations/Pipfile'): ```toml [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [packages] flask = {version = "<2"} connexion = {extras = ["swagger-ui"],version = ">=2.7.0"} requests = "*" biosimulators-utils = {version = ">=0.1.106", extras = ["bngl", "cellml", "lems", "logging", "neuroml", "sbml", "smoldyn"]} python-dateutil = "*" gunicorn = "*" flask-cors = "*" python-dotenv = "*" boto3 = "*" kisao = ">=2.26" stringcase = "*" natsort = "*" rdflib = "*" numpy = "*" requests-cache = "<0.7" # to resolve conflict in required version of itsdangerous dependency with flask # AMICI biosimulators-amici = ">=0.1.15" # BioNetGen biosimulators-bionetgen = ">=0.1.11" # BoolNet biosimulators-boolnet = ">=0.1.14" # CBMPy glpk = "*" biosimulators-cbmpy = ">=0.1.11" # COBRApy biosimulators-cobrapy = ">=0.1.14" # COPASI biosimulators-copasi = ">=0.1.29" # GillesPy2 biosimulators-gillespy2 = ">=0.1.29" # GINsim biosimulators-ginsim = ">=0.0.4" # LibSBMLSim biosimulators-libsbmlsim = ">=0.0.1" # MASSpy biosimulators-masspy = ">=0.0.2" # PySCeS cython = "<3" # assimulo = {version = ">=3.2.5", ref = "Assimulo-3.2.5", git = "https://github.com/modelon-community/Assimulo.git"} ipyparallel = "*" pysces = {ref = "7478a05bc4480e580fabfe89acb259274ced7f6c", git = "https://github.com/PySCeS/pysces.git"} biosimulators-pysces = ">=0.1.19" # pyNeuroML biosimulators-pyneuroml = ">=0.0.7" # Smoldyn smoldyn = "*" # tellurium biosimulators-tellurium = ">=0.1.13" # XPP biosimulators-xpp = ">=0.0.4" assimulo = {ref = "Assimulo-3.2.5", git = "https://github.com/modelon-community/Assimulo.git"} [dev-packages] openapi-core = "*" pyyaml = "*" pytest = "*" pytest-cov = "*" openapi-spec-validator = "*" parameterized = "*" requests = "*" [requires] python_version = "3.9" [pipenv] allow_prereleases = true ``` Contents of `Pipfile.lock` ('/home/jonrkarr/Documents/Biosimulations/Pipfile.lock'): ```json { "_meta": { "hash": { "sha256": "6f4b877aea689cba0a20cbe74652751c9f59f0c3defc907e853aba0b1530c83c" }, "pipfile-spec": 6, "requires": { "python_version": "3.9" }, "sources": [ { "name": "pypi", "url": "https://pypi.org/simple", "verify_ssl": true } ] }, "default": { "airspeed": { "hashes": [ "sha256:3c62971a87776b17c1974f8841f6db22999d3674a771bfc65766105a85e55cb4" ], "version": "==0.5.17" }, "amici": { "hashes": [ "sha256:b907a081aecea70751885ff1d37ef82944b134e541c3a01a5299a95b30d45efd" ], "markers": "python_version >= '3.7'", "version": "==0.11.18" }, "antimony": { "hashes": [ "sha256:26d425612580c4494386a0361cc886c471f33f274a8e13d10d95a7a1dd060cf7", "sha256:85a6a3ee895fa60447ad8f25db2b3ce22d65e2e08b8e304916870fe672fcbc70" ], "version": "==2.12.0.2" }, "anyio": { "hashes": [ "sha256:929a6852074397afe1d989002aa96d457e3e1e5441357c60d03e7eea0e65e1b0", "sha256:ae57a67583e5ff8b4af47666ff5651c3732d45fd26c929253748e796af860374" ], "markers": "python_full_version >= '3.6.2'", "version": "==3.3.0" }, "appdirs": { "hashes": [ "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41", "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128" ], "version": "==1.4.4" }, "argon2-cffi": { "hashes": [ "sha256:05a8ac07c7026542377e38389638a8a1e9b78f1cd8439cd7493b39f08dd75fbf", "sha256:0bf066bc049332489bb2d75f69216416329d9dc65deee127152caeb16e5ce7d5", "sha256:18dee20e25e4be86680b178b35ccfc5d495ebd5792cd00781548d50880fee5c5", "sha256:36320372133a003374ef4275fbfce78b7ab581440dfca9f9471be3dd9a522428", "sha256:392c3c2ef91d12da510cfb6f9bae52512a4552573a9e27600bdb800e05905d2b", "sha256:3aa804c0e52f208973845e8b10c70d8957c9e5a666f702793256242e9167c4e0", "sha256:57358570592c46c420300ec94f2ff3b32cbccd10d38bdc12dc6979c4a8484fbc", "sha256:6678bb047373f52bcff02db8afab0d2a77d83bde61cfecea7c5c62e2335cb203", "sha256:6ea92c980586931a816d61e4faf6c192b4abce89aa767ff6581e6ddc985ed003", "sha256:77e909cc756ef81d6abb60524d259d959bab384832f0c651ed7dcb6e5ccdbb78", "sha256:7d455c802727710e9dfa69b74ccaab04568386ca17b0ad36350b622cd34606fe", "sha256:8282b84ceb46b5b75c3a882b28856b8cd7e647ac71995e71b6705ec06fc232c3", "sha256:8a84934bd818e14a17943de8099d41160da4a336bcc699bb4c394bbb9b94bd32", "sha256:9bee3212ba4f560af397b6d7146848c32a800652301843df06b9e8f68f0f7361", "sha256:9dfd5197852530294ecb5795c97a823839258dfd5eb9420233c7cfedec2058f2", "sha256:b160416adc0f012fb1f12588a5e6954889510f82f698e23ed4f4fa57f12a0647", "sha256:b94042e5dcaa5d08cf104a54bfae614be502c6f44c9c89ad1535b2ebdaacbd4c", "sha256:ba7209b608945b889457f949cc04c8e762bed4fe3fec88ae9a6b7765ae82e496", "sha256:cc0e028b209a5483b6846053d5fd7165f460a1f14774d79e632e75e7ae64b82b", "sha256:d8029b2d3e4b4cea770e9e5a0104dd8fa185c1724a0f01528ae4826a6d25f97d", "sha256:da7f0445b71db6d3a72462e04f36544b0de871289b0bc8a7cc87c0f5ec7079fa", "sha256:e2db6e85c057c16d0bd3b4d2b04f270a7467c147381e8fd73cbbe5bc719832be" ], "version": "==20.1.0" }, "argparse": { "hashes": [ "sha256:62b089a55be1d8949cd2bc7e0df0bddb9e028faefc8c32038cc84862aefdd6e4", "sha256:c31647edb69fd3d465a847ea3157d37bed1f95f19760b11a47aa91c04b666314" ], "version": "==1.4.0" }, "attrs": { "hashes": [ "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1", "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==21.2.0" }, "backcall": { "hashes": [ "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e", "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255" ], "version": "==0.2.0" }, "beautifulsoup4": { "hashes": [ "sha256:4c98143716ef1cb40bf7f39a8e3eec8f8b009509e74904ba3a7b315431577e35", "sha256:84729e322ad1d5b4d25f805bfa05b902dd96450f43842c4e99067d5e1369eb25", "sha256:fff47e031e34ec82bf17e00da8f592fe7de69aeea38be00523c04623c04fb666" ], "version": "==4.9.3" }, "bionetgen": { "hashes": [ "sha256:1adbecf8a0ccdd72446468a4ccd6859edacba5810265ba3b4c5c87fd6261e637", "sha256:ee985d7ae634ac3f3b3e62e9b6bc801774156b9ba75e8607fab72c8bcd48e177" ], "version": "==0.4.3" }, "biosimulators-amici": { "hashes": [ "sha256:60c089d2b8544db79be7da6b71743d51387b4646aee2ec278b7383b1f62cee89", "sha256:c51a1b8bbed3e0b851a6a6297302e56786075fcf4ac2decfbc629b9cd0b0c25b" ], "index": "pypi", "version": "==0.1.15" }, "biosimulators-bionetgen": { "hashes": [ "sha256:7b2808c6417c34131ee6d77c500017ae0d5f36db75ce5a1e50311e44ea68e2c7", "sha256:c5a3095c5f512b156949836632e60ca6b4cab9f14f9ec0bed43116da33c7665f" ], "index": "pypi", "version": "==0.1.11" }, "biosimulators-boolnet": { "hashes": [ "sha256:c94e2389cd98e3b57cbc49dbfed389adc690ba97a45aeab0f80ae15434c7349e", "sha256:d99710c9486a158e0b426148218e62f7649adf579a9f58dca8b89125e62acbf7" ], "index": "pypi", "version": "==0.1.14" }, "biosimulators-cbmpy": { "hashes": [ "sha256:e953904db5c5cf615ea5fa7808752f4304f73692b9903f1b7d6805325e628eac", "sha256:e975b13f07a2f00d2eb822b0a7c45dfb42f5f01ae9c64ef5dda8fdf0eb43af0e" ], "index": "pypi", "version": "==0.1.11" }, "biosimulators-cobrapy": { "hashes": [ "sha256:084b66c602a92779af299dddb9be38b0bdedfdb72756818c39057f26dc82947f", "sha256:31f756956c4ed6825a7d9cb088bf2578bc9e92a28fb11bdd9098b6c6c8a13515" ], "index": "pypi", "version": "==0.1.14" }, "biosimulators-copasi": { "hashes": [ "sha256:886cf030720bddb4f22ab6951f872d1a156b01d0119c35e7e3a2e591519fb005", "sha256:d2d356f36e3863ff18c16b9836c35beb0085155bf90bdec970fdd29bd241b534" ], "index": "pypi", "version": "==0.1.29" }, "biosimulators-gillespy2": { "hashes": [ "sha256:bf17b6c60297d277b4be98ca20bf216a95321164875417c47ae200df4bfee549", "sha256:f674ba29a42375569a691b93acc263b6caa5272b0d5b2c351f3ceaaddded8037" ], "index": "pypi", "version": "==0.1.29" }, "biosimulators-ginsim": { "hashes": [ "sha256:3d330d4e1f5df4789329ad504306091ce2ce8dcfb5626f4296403f6d31f935ea", "sha256:f5a98826d2cfbe1de3908ad09ac8e191e1d704bf776a237f0f2512ff49d552d7" ], "index": "pypi", "version": "==0.0.4" }, "biosimulators-libsbmlsim": { "hashes": [ "sha256:27ca392b95d2d9d61f8b46513969bd2a8e1c6a8ecce7836f33c748f1b73ad01d", "sha256:73bccfad116162073492def7467d2708db424d393a35a0e0b4d628fa88ae3946" ], "index": "pypi", "version": "==0.0.1" }, "biosimulators-masspy": { "hashes": [ "sha256:5d96ff31f2f6543a55b32f67c964721063a52733f5bb510c2d58229d9430d07e", "sha256:f997ebd5963c5cad458643282921c2588801d60e505ee4fa6df4b9fa075fcc57" ], "index": "pypi", "version": "==0.0.2" }, "biosimulators-pyneuroml": { "hashes": [ "sha256:42e29d2095e46ce12c5b987fe4becab9afebae1e932b3a3311ca54c95346c689", "sha256:850e09637d2161bff1f288b80f21f17c63ebf4f12b18d0a92b9f0bf2d3b0c6d3" ], "index": "pypi", "version": "==0.0.7" }, "biosimulators-pysces": { "hashes": [ "sha256:da8c93feefb62da0888a5b3b290a8a24e234737f10244313682866790c09d00a", "sha256:e17c2bed8013c7cb58782cf85e850d44868cc4976f8dc7b467a89fbaa3ef0d93" ], "index": "pypi", "version": "==0.1.19" }, "biosimulators-tellurium": { "hashes": [ "sha256:9ad33ffe8bce6500ececc91bcc9ca3754e23ae68e3df942c86a6d49e0b86eade", "sha256:d3cdb9922b72a5eb3c3c59c61fc80ad7bdf2ecef2dacbf9d2a98b43bb1c7dc1a" ], "index": "pypi", "version": "==0.1.13" }, "biosimulators-utils": { "extras": [ "bngl", "cellml", "lems", "logging", "neuroml", "sbml", "smoldyn" ], "hashes": [ "sha256:2640536a045ac2d3ec9f49db49650070a7ff613e494e145de1d846de4014c479", "sha256:b5ceaebaa3e80a77bfd225641f02622820a36ec16462c8dee68ebf5bb2996fea" ], "index": "pypi", "version": "==0.1.106" }, "biosimulators-xpp": { "hashes": [ "sha256:a3f9cd6aa52c9b9a102baa8586f967a48d91a1941628dafcf1b16924a84ae909", "sha256:ee87a59f1d074d130a57ac38b882e2ad841d0d83c674dd9f14a15e7baa1c3109" ], "index": "pypi", "version": "==0.0.4" }, "bleach": { "hashes": [ "sha256:c1685a132e6a9a38bf93752e5faab33a9517a6c0bb2f37b785e47bf253bdb51d", "sha256:ffa9221c6ac29399cc50fcc33473366edd0cf8d5e2cbbbb63296dc327fb67cc8" ], "markers": "python_version >= '3.6'", "version": "==4.0.0" }, "boolean.py": { "hashes": [ "sha256:cc24e20f985d60cd4a3a5a1c0956dd12611159d32a75081dabd0c9ab981acaa4", "sha256:d75da0fd0354425fa64f6bbc6cec6ae1485d0eec3447b73187ff8cbf9b572e26" ], "version": "==3.8" }, "boto3": { "hashes": [ "sha256:057196ac15de4de2221a24a3a0a41692414fa1dd697994d062ebd447163265e7", "sha256:852e776cea4287f74edcb45564f8345fb6b0168dde0fd5bf46668b94c3f21177" ], "index": "pypi", "version": "==1.18.25" }, "botocore": { "hashes": [ "sha256:201e10d3b1b40d65b7c9214be7087d78ed65de00e7362bd1e020741301d09fbc", "sha256:b9820ee29d70059c9b0e2a69ec13ebf80f4a0bc85f47578f17e951438c506b2d" ], "markers": "python_version >= '3.6'", "version": "==1.21.25" }, "cachetools": { "hashes": [ "sha256:2cc0b89715337ab6dbba85b5b50effe2b0c74e035d83ee8ed637cf52f12ae001", "sha256:61b5ed1e22a0924aed1d23b478f37e8d52549ff8a961de2909c69bf950020cff" ], "markers": "python_version ~= '3.5'", "version": "==4.2.2" }, "capturer": { "hashes": [ "sha256:4849032f6a670c02be434c484a0abf43c870a1efafafbfffd2e6f1c1f7ef5001", "sha256:b1ef6e8831cd170906df7c881a36c8b8a1b0b824b147b950a1a8c11776da981b" ], "version": "==3.0" }, "cbmpy": { "hashes": [ "sha256:1e2121f436bd21cf9d47025cec7e91cfde368b2f30339aad58c1c545e5131f6d", "sha256:b3db53d158136b1cde33850796ed110975ffc7a10e4e65d8f7123d3c43adc623", "sha256:c3c82ba487f2a47fe58606227d3de19f51deaac52116c518692a85a0b00717f8" ], "version": "==0.7.25" }, "cement": { "hashes": [ "sha256:10a8459dc9fc31d6c038ede24a9081c5c3bd5fcd75b071e01baf281f81c9eace", "sha256:3b6b550d56d8a893fc4e4c1d153c5322ab2aa991e85f3358890af63bafafa3f4" ], "markers": "python_version >= '3.5'", "version": "==3.0.4" }, "certifi": { "hashes": [ "sha256:2bbf76fd432960138b3ef6dda3dde0544f27cbf8546c458e60baf371917ba9ee", "sha256:50b1e4f8446b06f41be7dd6338db18e0990601dce795c2b1686458aa7e8fa7d8" ], "version": "==2021.5.30" }, "cffi": { "hashes": [ "sha256:06c54a68935738d206570b20da5ef2b6b6d92b38ef3ec45c5422c0ebaf338d4d", "sha256:0c0591bee64e438883b0c92a7bed78f6290d40bf02e54c5bf0978eaf36061771", "sha256:19ca0dbdeda3b2615421d54bef8985f72af6e0c47082a8d26122adac81a95872", "sha256:22b9c3c320171c108e903d61a3723b51e37aaa8c81255b5e7ce102775bd01e2c", "sha256:26bb2549b72708c833f5abe62b756176022a7b9a7f689b571e74c8478ead51dc", "sha256:33791e8a2dc2953f28b8d8d300dde42dd929ac28f974c4b4c6272cb2955cb762", "sha256:3c8d896becff2fa653dc4438b54a5a25a971d1f4110b32bd3068db3722c80202", "sha256:4373612d59c404baeb7cbd788a18b2b2a8331abcc84c3ba40051fcd18b17a4d5", "sha256:487d63e1454627c8e47dd230025780e91869cfba4c753a74fda196a1f6ad6548", "sha256:48916e459c54c4a70e52745639f1db524542140433599e13911b2f329834276a", "sha256:4922cd707b25e623b902c86188aca466d3620892db76c0bdd7b99a3d5e61d35f", "sha256:55af55e32ae468e9946f741a5d51f9896da6b9bf0bbdd326843fec05c730eb20", "sha256:57e555a9feb4a8460415f1aac331a2dc833b1115284f7ded7278b54afc5bd218", "sha256:5d4b68e216fc65e9fe4f524c177b54964af043dde734807586cf5435af84045c", "sha256:64fda793737bc4037521d4899be780534b9aea552eb673b9833b01f945904c2e", "sha256:6d6169cb3c6c2ad50db5b868db6491a790300ade1ed5d1da29289d73bbe40b56", "sha256:7bcac9a2b4fdbed2c16fa5681356d7121ecabf041f18d97ed5b8e0dd38a80224", "sha256:80b06212075346b5546b0417b9f2bf467fea3bfe7352f781ffc05a8ab24ba14a", "sha256:818014c754cd3dba7229c0f5884396264d51ffb87ec86e927ef0be140bfdb0d2", "sha256:8eb687582ed7cd8c4bdbff3df6c0da443eb89c3c72e6e5dcdd9c81729712791a", "sha256:99f27fefe34c37ba9875f224a8f36e31d744d8083e00f520f133cab79ad5e819", "sha256:9f3e33c28cd39d1b655ed1ba7247133b6f7fc16fa16887b120c0c670e35ce346", "sha256:a8661b2ce9694ca01c529bfa204dbb144b275a31685a075ce123f12331be790b", "sha256:a9da7010cec5a12193d1af9872a00888f396aba3dc79186604a09ea3ee7c029e", "sha256:aedb15f0a5a5949ecb129a82b72b19df97bbbca024081ed2ef88bd5c0a610534", "sha256:b315d709717a99f4b27b59b021e6207c64620790ca3e0bde636a6c7f14618abb", "sha256:ba6f2b3f452e150945d58f4badd92310449876c4c954836cfb1803bdd7b422f0", "sha256:c33d18eb6e6bc36f09d793c0dc58b0211fccc6ae5149b808da4a62660678b156", "sha256:c9a875ce9d7fe32887784274dd533c57909b7b1dcadcc128a2ac21331a9765dd", "sha256:c9e005e9bd57bc987764c32a1bee4364c44fdc11a3cc20a40b93b444984f2b87", "sha256:d2ad4d668a5c0645d281dcd17aff2be3212bc109b33814bbb15c4939f44181cc", "sha256:d950695ae4381ecd856bcaf2b1e866720e4ab9a1498cba61c602e56630ca7195", "sha256:e22dcb48709fc51a7b58a927391b23ab37eb3737a98ac4338e2448bef8559b33", "sha256:e8c6a99be100371dbb046880e7a282152aa5d6127ae01783e37662ef73850d8f", "sha256:e9dc245e3ac69c92ee4c167fbdd7428ec1956d4e754223124991ef29eb57a09d", "sha256:eb687a11f0a7a1839719edd80f41e459cc5366857ecbed383ff376c4e3cc6afd", "sha256:eb9e2a346c5238a30a746893f23a9535e700f8192a68c07c0258e7ece6ff3728", "sha256:ed38b924ce794e505647f7c331b22a693bee1538fdf46b0222c4717b42f744e7", "sha256:f0010c6f9d1a4011e429109fda55a225921e3206e7f62a0c22a35344bfd13cca", "sha256:f0c5d1acbfca6ebdd6b1e3eded8d261affb6ddcf2186205518f1428b8569bb99", "sha256:f10afb1004f102c7868ebfe91c28f4a712227fe4cb24974350ace1f90e1febbf", "sha256:f174135f5609428cc6e1b9090f9268f5c8935fddb1b25ccb8255a2d50de6789e", "sha256:f3ebe6e73c319340830a9b2825d32eb6d8475c1dac020b4f0aa774ee3b898d1c", "sha256:f627688813d0a4140153ff532537fbe4afea5a3dffce1f9deb7f91f848a832b5", "sha256:fd4305f86f53dfd8cd3522269ed7fc34856a8ee3709a5e28b2836b2db9d4cd69" ], "version": "==1.14.6" }, "chardet": { "hashes": [ "sha256:0d6f53a15db4120f2b08c94f11e7d93d2c911ee118b6b30a04ec3ee8310179fa", "sha256:f864054d66fd9118f2e67044ac8981a54775ec5b67aed0441892edb553d21da5" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==4.0.0" }, "charset-normalizer": { "hashes": [ "sha256:0c8911edd15d19223366a194a513099a302055a962bca2cec0f54b8b63175d8b", "sha256:f23667ebe1084be45f6ae0538e4a5a865206544097e4e8bbcacf42cd02a348f3" ], "markers": "python_version >= '3'", "version": "==2.0.4" }, "click": { "hashes": [ "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a", "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==7.1.2" }, "clickclick": { "hashes": [ "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c", "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5" ], "version": "==20.10.2" }, "cobra": { "hashes": [ "sha256:25f2d669b30ec74b309fadbe1b321abee31e7cae9e889b3199ccca93e9cd8e52", "sha256:f9c3fea3c1d60eb8b317a6ba047d3fb29d53b85235f22d3d38660be8a4a51bf1" ], "version": "==0.22.1" }, "colomoto-jupyter": { "hashes": [ "sha256:51912560cf5617a0ddc3adbb89b078e68834bd526f17ece67369cd89f4235b82", "sha256:fc7d4d59fe8f0913611f08d6f3a39e87c0a9385d2dc9c3fbbbd3e66cfe841cee" ], "version": "==0.8.1" }, "colorama": { "hashes": [ "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b", "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==0.4.4" }, "colorlog": { "hashes": [ "sha256:375fd730040e20618a05e9c3548330671bb53934f0eeaa8cb0abb3fd0ef8f1fa", "sha256:a7cfd8226fadb1730019bca1f4c4f351649ce3a39350544a6a1fad5774282021" ], "markers": "python_version >= '3.6'", "version": "==6.3.0a1" }, "commonmark": { "hashes": [ "sha256:452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60", "sha256:da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9" ], "version": "==0.9.1" }, "connexion": { "extras": [ "swagger-ui" ], "hashes": [ "sha256:0105b03ea1c54fa0e8160825c729e416b8bd6bf3f007981b04c92ce6d5ae990b", "sha256:656d451e21df5f38c4ddb826b805ebe5a641423253f7f33c798ca3ec1cb94cda" ], "index": "pypi", "version": "==2.9.0" }, "cycler": { "hashes": [ "sha256:1d8a5ae1ff6c5cf9b93e8811e581232ad8920aeec647c37316ceac982b08cb2d", "sha256:cd7b2d1018258d7247a71425e9f26463dfb444d411c39569972f4ce586b0c9d8" ], "version": "==0.10.0" }, "cython": { "hashes": [ "sha256:09ac3087ac7a3d489ebcb3fb8402e00c13d1a3a1c6bc73fd3b0d756a3e341e79", "sha256:0a142c6b862e6ed6b02209d543062c038c110585b5e32d1ad7c9717af4f07e41", "sha256:0d414458cb22f8a90d64260da6dace5d5fcebde43f31be52ca51f818c46db8cb", "sha256:10cb3def9774fa99e4583617a5616874aed3255dc241fd1f4a3c2978c78e1c53", "sha256:112efa54a58293a4fb0acf0dd8e5b3736e95b595eee24dd88615648e445abe41", "sha256:166f9f29cd0058ce1a14a7b3a2458b849ed34b1ec5fd4108af3fdd2c24afcbb0", "sha256:2d9e61ed1056a3b6a4b9156b62297ad18b357a7948e57a2f49b061217696567e", "sha256:2f41ef7edd76dd23315925e003f0c58c8585f3ab24be6885c4b3f60e77c82746", "sha256:37bcfa5df2a3009f49624695d917c3804fccbdfcdc5eda6378754a879711a4d5", "sha256:416046a98255eff97ec02077d20ebeaae52682dfca1c35aadf31260442b92514", "sha256:4cf4452f0e4d50e11701bca38f3857fe6fa16593e7fd6a4d5f7be66f611b7da2", "sha256:55b0ee28c2c8118bfb3ad9b25cf7a6cbd724e442ea96956e32ccd908d5e3e043", "sha256:5dd56d0be50073f0e54825a8bc3393852de0eed126339ecbca0ae149dba55cfc", "sha256:5fa12ebafc2f688ea6d26ab6d1d2e634a9872509ba7135b902bb0d8b368fb04b", "sha256:5fb977945a2111f6b64501fdf7ed0ec162cc502b84457fd648d6a558ea8de0d6", "sha256:60c958bcab0ff315b4036a949bed1c65334e1f6a69e17e9966d742febb59043a", "sha256:661dbdea519d9cfb288867252b75fef73ffa8e8bb674cec27acf70646afb369b", "sha256:6a2cf2ccccc25413864928dfd730c29db6f63eaf98206c1e600003a445ca7f58", "sha256:6ade74eece909fd3a437d9a5084829180751d7ade118e281e9824dd75eafaff2", "sha256:73ac33a4379056a02031baa4def255717fadb9181b5ac2b244792d53eae1c925", "sha256:76cbca0188d278e93d12ebdaf5990678e6e436485fdfad49dbe9b07717d41a3c", "sha256:774cb8fd931ee1ba52c472bc1c19077cd6895c1b24014ae07bb27df59aed5ebe", "sha256:821c2d416ad7d006b069657ee1034c0e0cb45bdbe9ab6ab631e8c495dfcfa4ac", "sha256:84826ec1c11cda56261a252ddecac0c7d6b02e47e81b94f40b27b4c23c29c17c", "sha256:854fe2193d3ad4c8b61932ff54d6dbe10c5fa8749eb8958d72cc0ab28243f833", "sha256:88dc3c250dec280b0489a83950b15809762e27232f4799b1b8d0bad503f5ab84", "sha256:8cb87777e82d1996aef6c146560a19270684271c9c669ba62ac6803b3cd2ff82", "sha256:91339ee4b465924a3ea4b2a9cec7f7227bc4cadf673ce859d24c2b9ef60b1214", "sha256:9164aeef1af6f837e4fc20402a31d256188ba4d535e262c6cb78caf57ad744f8", "sha256:a102cfa795c6b3b81a29bdb9dbec545367cd7f353c03e6f30a056fdfefd92854", "sha256:ad43e684ade673565f6f9d6638015112f6c7f11aa2a632167b79014f613f0f5f", "sha256:afb521523cb46ddaa8d269b421f88ea2731fee05e65b952b96d4db760f5a2a1c", "sha256:b28f92e617f540d3f21f8fd479a9c6491be920ffff672a4c61b7fc4d7f749f39", "sha256:bc05de569f811be1fcfde6756c9048ae518f0c4b6d9f8f024752c5365d934cac", "sha256:cdf04d07c3600860e8c2ebaad4e8f52ac3feb212453c1764a49ac08c827e8443", "sha256:d8d1a087f35e39384303f5e6b75d465d6f29d746d7138eae9d3b6e8e6f769eae", "sha256:eb2843f8cc01c645725e6fc690a84e99cdb266ce8ebe427cf3a680ff09f876aa", "sha256:f2e9381497b12e8f622af620bde0d1d094035d79b899abb2ddd3a7891f535083", "sha256:f96411f0120b5cae483923aaacd2872af8709be4b46522daedc32f051d778385" ], "index": "pypi", "version": "==0.29.24" }, "debugpy": { "hashes": [ "sha256:00f9d14da52b87e98e26f5c3c8f1937cc496915b38f8ccb7b329336b21898678", "sha256:129312b01ec46ab303a8c0667d559a0de0bed1a394cc128039b6f008f1c376b7", "sha256:12cb415e7394c6738527cbc482935aa9414e9b4cc87dd040015d0e5cb8b4471a", "sha256:1762908202b0b0b481ec44125edb625d136d16c4991d3a7c1310c85672ffe5ba", "sha256:1bc8e835a48ef23280cbaf2b70a5a2b629b9ee79685b64d974bfb8d467f4aa67", "sha256:2bfda2721046fb43a7074d475a12adcd55a65bfd23a1ff675427b09a01ba40cc", "sha256:2d4c4ab934fbe1c7095d19b3d4246afe119396b49540ca5d5ad34ef01b27bd2a", "sha256:309909b6c85f89aea3fa10fc256b52fef3c25fee4d00e1b5f5db1ace57203a2c", "sha256:3756cd421be701d06490635372327ebd1ccb44b37d59682c994f6bd59e040a91", "sha256:399b2c60c8e67a5d30c6e4522129e8be8d484e6064286f8ba3ce857a3927312a", "sha256:3a6dee475102d0169732162b735878e8787500719ccb4d54b1458afe992a4c4d", "sha256:3d92cb2e8b4f9591f6d6e17ccf8c1a55a58857949d9a5aae0ff37b64faaa3b80", "sha256:4655824321b36b353b12d1617a29c79320412f085ecabf54524603b4c0c791e8", "sha256:4e0d57a8c35b20b4e363db943b909aa83f12594e2f34070a1db5fa9b7213336b", "sha256:52920ccb4acdbb2a9a42e0a4d60a7bbc4a34bf16fd23c674b280f8e9a8cacbd6", "sha256:595170ac17567773b546d40a0ff002dc350cfcd95c9233f65e79370954fb9a01", "sha256:67d496890d1cada5ce924cb30178684e7b82a36b80b8868beb148db54fd9e44c", "sha256:6bb62615b3ad3d7202b7b7eb85f3d000aa17a61303af5f11eab048c91a1f30a6", "sha256:71e67d352cabdc6a3f4dc3e39a1d2d1e76763a2102a276904e3495ede48a9832", "sha256:732ac8bb79694cb4127c08bfc6128274f3dee9e6fd2ddde7bf026a40efeb202d", "sha256:7376bd8f4272ab01342940bd020955f021e26954e1f0df91cfa8bf1fa4451b56", "sha256:768f393ffaa66a3b3ed92b06e21912a5df3e01f18fb531bcbba2f94cad1725a7", "sha256:7b332ce0d1a46f0f4200d59ee78428f18301d1fb85d07402723b94e1de96951c", "sha256:7b4e399790a301c83ad6b153452233695b2f15450d78956a6d297859eb44d185", "sha256:7e12e94aa2c9a0017c0a84cd475063108d06e305360b69c933bde17a6a527f80", "sha256:84ff51b8b5c847d5421324ca419db1eec813a4dd2bbf19dbbbe132e2ab2b2fc6", "sha256:86cd13162b752664e8ef048287a6973c8fba0a71f396b31cf36394880ec2a6bf", "sha256:889316de0b8ff3732927cb058cfbd3371e4cd0002ecc170d34c755ad289c867c", "sha256:89d53d57001e54a3854489e898c697aafb2d6bb81fca596da2400f3fd7fd397c", "sha256:8a2be4e5d696ad39be6c6c37dc580993d04aad7d893fd6e449e1a055d7b5dddb", "sha256:8e63585c372873cd88c2380c0b3c4815c724a9713f5b86d1b3a1f1ac30df079e", "sha256:939c94d516e6ed5433cc3ba12d9d0d8108499587158ae5f76f6db18d49e21b5b", "sha256:959d39f3d724d25b7ab79278f032e33df03c6376d51b3517abaf2f8e83594ee0", "sha256:9a0cd73d7a76222fbc9f9180612ccb4ad7d7f7e4f26e55ef1fbd459c0f2f5322", "sha256:9d559bd0e4c288487349e0723bc70ff06390638446ee8087d4d5711486119643", "sha256:a19def91a0a166877c2a26b611c1ad0473ce85b1df61ae5276197375d574228b", "sha256:a2c5a1c49239707ed5bc8e97d8f9252fb392d9e13c79c7b477593d7dde4ae24a", "sha256:a4368c79a2c4458d5a0540381a32f8fdc02b3c9ba9dd413a49b42929297b29b3", "sha256:a9f582203af34c6978bffaba77425662e949251998276e9dece113862e753459", "sha256:ab37f189b1dd0d8420545c9f3d066bd1601a1ae85b26de38f5c1ccb96cf0b042", "sha256:ac2d1cdd3279806dab2119937c0769f11dee13166650aaa84b6700b30a845d10", "sha256:bad668e9edb21199017ab31f52a05e14506ad6566110560796d2a8f258e0b819", "sha256:c5e771fcd12727f734caf2a10ff92966ae9857db0ccb6bebd1a4f776c54186a8", "sha256:c96e82d863db97d3eb498cc8e55773004724bdeaa58fb0eb7ee7d5a21d240d6a", "sha256:cd36e75c0f71a924f4b4cdb5f74b3321952cf636aadf70e0f85fd9cd2edfc1d0", "sha256:cf6b26f26f97ef3033008db7b3df7233363407d7b6cacd4bc4f8e02ce8e11df4", "sha256:d89ab3bd51d6a3f13b093bc3881a827d8f6c9588d9a493bddb3b47f9d078fd1d", "sha256:dea62527a4a2770a0d12ce46564636d892bba29baaf5dba5bfe98bb55bf17a11", "sha256:e47c42bc1a68ead3c39d9a658d3ccf311bc45dc84f3c90fa5cb7de1796243f47", "sha256:e6711106aafc26ecb78e43c4be0a49bd0ae4a1f3e1aa502de151e38f4717b2a2", "sha256:e7e049a4e8e362183a5a5b4ad058a1543211970819d0c11011c87c3a9dec2eaf", "sha256:ebc241351791595796864a960892e1cd58627064feda939d0377edd0730bbff2", "sha256:eee2224ce547d2958ffc0d63cd280a9cc6377043f32ce370cfe4ca6be4e05476", "sha256:f20a07ac5fb0deee9be1ad1a9a124d858a8b79c66c7ec5e1767d78aa964f86c4", "sha256:f77406f33760e6f13a7ff0ac375d9c8856844b61cd95f7502b57116858f0cfe1", "sha256:fece69933d17e0918b73ddeb5e23bcf789edd2a6eb0d438b09c40d51e76b9c74" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==1.4.1" }, "decorator": { "hashes": [ "sha256:6e5c199c16f7a9f0e3a61a4a54b3d27e7dad0dbdde92b944426cb20914376323", "sha256:72ecfba4320a893c53f9706bebb2d55c270c1e51a28789361aa93e4a21319ed5" ], "markers": "python_version >= '3.5'", "version": "==5.0.9" }, "defusedxml": { "hashes": [ "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69", "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==0.7.1" }, "depinfo": { "hashes": [ "sha256:5f772fdcd5a376f2d5c01e6eac7120d91316536b1e1885aea1e87f03f86a38ab", "sha256:770c82e02f7f1f58c8ff87f8ad132ef3b5f5acbce586b838fadd0eb25b131340" ], "markers": "python_version >= '3.6'", "version": "==1.7.0" }, "diskcache": { "hashes": [ "sha256:1805acd5868ac10ad547208951a1190a0ab7bbff4e70f9a07cde4dbdfaa69f64", "sha256:6e8137c778fd2752b93c8a8f944e939b3665d645b46774d8537dd3528ac3baa1" ], "markers": "python_version >= '3'", "version": "==5.2.1" }, "entrypoints": { "hashes": [ "sha256:589f874b313739ad35be6e0cd7efde2a4e9b6fea91edcc34e58ecbb8dbe56d19", "sha256:c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451" ], "markers": "python_version >= '2.7'", "version": "==0.3" }, "et-xmlfile": { "hashes": [ "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c", "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada" ], "markers": "python_version >= '3.6'", "version": "==1.1.0" }, "evalidate": { "hashes": [ "sha256:637f97bd3fad19f60a077924aa26a5818065316efe8333bda33e11da6b4afd32" ], "version": "==0.7.7" }, "fastobo": { "hashes": [ "sha256:08cb64d50358371e4699b02693aa4b71238993c493f75d3c9964d8cbb79528ac", "sha256:15dd2d4e025c8b7e83f2bff33e43eba31d551eeac82c76f017c737dcee15b649", "sha256:2c346b4cd3fbe04e799a7b2d5b68cb6cfc3a9859ac744377c7de44be53f6941b", "sha256:417001c669fe46c582dc16138348f9997fa4e8aa42c3c91ac1a04aacd33667fe", "sha256:47750fd9a09365cc003398e32a342fb9252f7a59a9b65b64ec7f876d30568def", "sha256:4f44393dc412ddc7c05ebfb2298902d54f27c6e88c9ff109512aff5157b7753a", "sha256:520b1ae05c09467e3aa0c371c3e2f50c8eeef3c268a79da6059bc31bdae45db7", "sha256:5253d0b7beafe793e5205b9399bac99785b430eb3c64a232115cb4989fbfa3ae", "sha256:9c62364efe9d35042a478842cde8370bd9f1c049fd12429cf0ff84faef05d07c", "sha256:9eb163a9c61af075c3e4bf8187fa3ffc2fb11a54b08f31994f975cff83765980", "sha256:a6c39527229ed8cd57f03621a6553ce60a17bec26bb7fa7c6c81c8f2bfb63414", "sha256:a8ecb08d3ba07e9c3530be9caad9b4750d36c321dab21aebf3151d75e007a982", "sha256:b90044a90fe90d86cc586eb0a822a0b53f0e09038e5d057cae6b72cc4f8eb768", "sha256:e6d0b6a14e8fbb734b5eefcde87f3f1d1b12c810352185e756e574eb35a1aa0e", "sha256:fdb452cce94048866935e10a56405c4e03f0b30af2759a12fbca812e07559745" ], "markers": "python_version >= '3.6'", "version": "==0.10.2" }, "flask": { "hashes": [ "sha256:0fbeb6180d383a9186d0d6ed954e0042ad9f18e0e8de088b2b419d526927d196", "sha256:c34f04500f2cbbea882b1acb02002ad6fe6b7ffa64a6164577995657f50aed22" ], "index": "pypi", "version": "==1.1.4" }, "flask-cors": { "hashes": [ "sha256:74efc975af1194fc7891ff5cd85b0f7478be4f7f59fe158102e91abb72bb4438", "sha256:b60839393f3b84a0f3746f6cdca56c1ad7426aa738b70d6c61375857823181de" ], "index": "pypi", "version": "==3.0.10" }, "future": { "hashes": [ "sha256:b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d" ], "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==0.18.2" }, "gillespy2": { "hashes": [ "sha256:61e15c1ff64d608799df3d2174b7e0b2a31de9c8d6c4d7ad5d612b8991c20ab5", "sha256:ce247659ac616b34cdee4ff47102ccf644565776d072619b804400b1c2faa9b4" ], "version": "==1.6.3" }, "ginsim": { "hashes": [ "sha256:35229b412a4216329cd0185d4022a9de7c8ba235c38f17a7f6f859be5ee7c1b4", "sha256:c0da5e13c418f75e4bfede7e68179d4df135ce077c26b517a26f24dc8805b953" ], "version": "==0.4.3" }, "glpk": { "hashes": [ "sha256:8739fcf6513c2f225ac525c2a43c89f10de27b546983e7900235ea87c85a1b74" ], "index": "pypi", "version": "==0.4.6" }, "graphviz": { "hashes": [ "sha256:5dadec94046d82adaae6019311a30e0487536d9d5a60d85451f0ba32f9fc6559", "sha256:ef6e2c5deb9cdcc0c7eece1d89625fd07b0f2208ea2bcb483520907ddf8b4e12" ], "markers": "python_version >= '3.6'", "version": "==0.17" }, "gunicorn": { "hashes": [ "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e", "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8" ], "index": "pypi", "version": "==20.1.0" }, "h11": { "hashes": [ "sha256:36a3cb8c0a032f56e2da7084577878a035d3b61d104230d4bd49c0c6b555a9c6", "sha256:47222cb6067e4a307d535814917cd98fd0a57b6788ce715755fa2b6c28b56042" ], "markers": "python_version >= '3.6'", "version": "==0.12.0" }, "h5py": { "hashes": [ "sha256:09e78cefdef0b7566ab66366c5c7d9984c7b23142245bd51b82b744ad1eebf65", "sha256:13355234c004ff8bd819f7d3420188aa1936b17d7f8470d622974a373421b7a5", "sha256:5e2f22e66a3fb1815405cfe5711670450c973b8552507c535a546a23a468af3d", "sha256:7ca7d23ebbdd59a4be9b4820de52fe67adc74e6a44d5084881305461765aac47", "sha256:89d7e10409b62fed81c571e35798763cb8375442b98f8ebfc52ba41ac019e081", "sha256:8e09b682e4059c8cd259ddcc34bee35d639b9170105efeeae6ad195e7c1cea7a", "sha256:baef1a2cdef287a83e7f95ce9e0f4d762a9852fe7117b471063442c78b973695", "sha256:e0dac887d779929778b3cfd13309a939359cc9e74756fc09af7c527a82797186", "sha256:e0ea3330bf136f8213e43db67448994046ce501585dddc7ea4e8ceef0ef1600c", "sha256:f3bba8ffddd1fd2bf06127c5ff7b73f022cc1c8b7164355ddc760dc3f8570136" ], "markers": "python_version >= '3.7'", "version": "==3.3.0" }, "httpcore": { "hashes": [ "sha256:b0d16f0012ec88d8cc848f5a55f8a03158405f4bca02ee49bc4ca2c1fda49f3e", "sha256:db4c0dcb8323494d01b8c6d812d80091a31e520033e7b0120883d6f52da649ff" ], "markers": "python_version >= '3.6'", "version": "==0.13.6" }, "httpx": { "hashes": [ "sha256:92ecd2c00c688b529eda11cedb15161eaf02dee9116712f621c70d9a40b2cdd0", "sha256:9bd728a6c5ec0a9e243932a9983d57d3cc4a87bb4f554e1360fce407f78f9435" ], "markers": "python_version >= '3.6'", "version": "==0.19.0" }, "humanfriendly": { "hashes": [ "sha256:332da98c24cc150efcc91b5508b19115209272bfdf4b0764a56795932f854271", "sha256:f7dba53ac7935fd0b4a2fc9a29e316ddd9ea135fb3052d3d0279d10c18ff9c48" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==9.2" }, "idna": { "hashes": [ "sha256:14475042e284991034cb48e06f6851428fb14c4dc953acd9be9a5e95c7b6dd7a", "sha256:467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3" ], "version": "==3.2" }, "importlib-resources": { "hashes": [ "sha256:2480d8e07d1890056cb53c96e3de44fead9c62f2ba949b0f2e4c4345f4afa977", "sha256:a65882a4d0fe5fbf702273456ba2ce74fe44892c25e42e057aca526b702a6d4b" ], "markers": "python_version >= '3.6'", "version": "==5.2.2" }, "inflection": { "hashes": [ "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417", "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2" ], "markers": "python_version >= '3.5'", "version": "==0.5.1" }, "iniconfig": { "hashes": [ "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3", "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32" ], "version": "==1.1.1" }, "ipykernel": { "hashes": [ "sha256:35cc31accec420e90c4b66ea7f4e7b067c769e31af3502e45326c6f1294d238d", "sha256:4439459f171d77f35b7f7e72dace5d7c2dd10a5c9e2c22b173ad9048fbfe7656" ], "markers": "python_version >= '3.7'", "version": "==6.2.0" }, "ipyparallel": { "hashes": [ "sha256:57e0eccd1f54c4757a629220dca2072bed58d39ebcd1d768ead7c29fce29e6bd", "sha256:734ead432dfa0a1ec85f427bf7e7ddff80dc63a98524d25d5831dfd74437466e" ], "index": "pypi", "version": "==7.0.0b2" }, "ipython": { "hashes": [ "sha256:0cff04bb042800129348701f7bd68a430a844e8fb193979c08f6c99f28bb735e", "sha256:892743b65c21ed72b806a3a602cca408520b3200b89d1924f4b3d2cdb3692362" ], "markers": "python_version >= '3.7'", "version": "==7.26.0" }, "ipython-genutils": { "hashes": [ "sha256:72dd37233799e619666c9f639a9da83c34013a73e8bbc79a7a6348d93c61fab8", "sha256:eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8" ], "version": "==0.2.0" }, "isodate": { "hashes": [ "sha256:2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8", "sha256:aa4d33c06640f5352aca96e4b81afd8ab3b47337cc12089822d6f322ac772c81" ], "version": "==0.6.0" }, "itsdangerous": { "hashes": [ "sha256:321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19", "sha256:b12271b2047cb23eeb98c8b5622e2e5c5e9abd9784a153e9d8ef9cb4dd09d749" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.1.0" }, "jedi": { "hashes": [ "sha256:18456d83f65f400ab0c2d3319e48520420ef43b23a086fdc05dff34132f0fb93", "sha256:92550a404bad8afed881a137ec9a461fed49eca661414be45059329614ed0707" ], "markers": "python_version >= '3.6'", "version": "==0.18.0" }, "jinja2": { "hashes": [ "sha256:03e47ad063331dd6a3f04a43eddca8a966a26ba0c5b7207a9a9e4e08f1b29419", "sha256:a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==2.11.3" }, "jmespath": { "hashes": [ "sha256:b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9", "sha256:cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f" ], "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==0.10.0" }, "jsonschema": { "hashes": [ "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163", "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a" ], "version": "==3.2.0" }, "jupyter-client": { "hashes": [ "sha256:07b9566979546004c089afe7c9bf9e96224ec5f8421fe0ae460759fa593c6b1d", "sha256:48822a93d9d75daa5fde235c35cf7a92fc979384735962501d4eb60b197fb43a" ], "markers": "python_full_version >= '3.6.1'", "version": "==7.0.1" }, "jupyter-core": { "hashes": [ "sha256:a05c0993fe0558af6bee05d7525fc52326952f3c66a8bb4cc10cae97e2499be3", "sha256:a2b8ffc26d5b39a1bf7afab05a988b82d367b1f64836af2f428ebc8f4009744d" ], "markers": "python_version >= '3.6'", "version": "==4.8.0b0" }, "jupyterlab-pygments": { "hashes": [ "sha256:abfb880fd1561987efaefcb2d2ac75145d2a5d0139b1876d5be806e32f630008", "sha256:cfcda0873626150932f438eccf0f8bf22bfa92345b814890ab360d666b254146" ], "version": "==0.1.2" }, "kisao": { "hashes": [ "sha256:ae88e99ad2afc90051204935a01fbf2a12273a64693dfb915ec37eb74d1b27ec", "sha256:eb026433f774142a06054d649cd623bb452d38d6471ecb75e8f293e33b1bd74e" ], "index": "pypi", "version": "==2.26" }, "kiwisolver": { "hashes": [ "sha256:0cd53f403202159b44528498de18f9285b04482bab2a6fc3f5dd8dbb9352e30d", "sha256:1e1bc12fb773a7b2ffdeb8380609f4f8064777877b2225dec3da711b421fda31", "sha256:225e2e18f271e0ed8157d7f4518ffbf99b9450fca398d561eb5c4a87d0986dd9", "sha256:232c9e11fd7ac3a470d65cd67e4359eee155ec57e822e5220322d7b2ac84fbf0", "sha256:31dfd2ac56edc0ff9ac295193eeaea1c0c923c0355bf948fbd99ed6018010b72", "sha256:33449715e0101e4d34f64990352bce4095c8bf13bed1b390773fc0a7295967b3", "sha256:401a2e9afa8588589775fe34fc22d918ae839aaaf0c0e96441c0fdbce6d8ebe6", "sha256:44a62e24d9b01ba94ae7a4a6c3fb215dc4af1dde817e7498d901e229aaf50e4e", "sha256:50af681a36b2a1dee1d3c169ade9fdc59207d3c31e522519181e12f1b3ba7000", "sha256:563c649cfdef27d081c84e72a03b48ea9408c16657500c312575ae9d9f7bc1c3", "sha256:5989db3b3b34b76c09253deeaf7fbc2707616f130e166996606c284395da3f18", "sha256:5a7a7dbff17e66fac9142ae2ecafb719393aaee6a3768c9de2fd425c63b53e21", "sha256:5c3e6455341008a054cccee8c5d24481bcfe1acdbc9add30aa95798e95c65621", "sha256:5f6ccd3dd0b9739edcf407514016108e2280769c73a85b9e59aa390046dbf08b", "sha256:72c99e39d005b793fb7d3d4e660aed6b6281b502e8c1eaf8ee8346023c8e03bc", "sha256:78751b33595f7f9511952e7e60ce858c6d64db2e062afb325985ddbd34b5c131", "sha256:834ee27348c4aefc20b479335fd422a2c69db55f7d9ab61721ac8cd83eb78882", "sha256:8be8d84b7d4f2ba4ffff3665bcd0211318aa632395a1a41553250484a871d454", "sha256:950a199911a8d94683a6b10321f9345d5a3a8433ec58b217ace979e18f16e248", "sha256:a357fd4f15ee49b4a98b44ec23a34a95f1e00292a139d6015c11f55774ef10de", "sha256:a53d27d0c2a0ebd07e395e56a1fbdf75ffedc4a05943daf472af163413ce9598", "sha256:acef3d59d47dd85ecf909c359d0fd2c81ed33bdff70216d3956b463e12c38a54", "sha256:b38694dcdac990a743aa654037ff1188c7a9801ac3ccc548d3341014bc5ca278", "sha256:b9edd0110a77fc321ab090aaa1cfcaba1d8499850a12848b81be2222eab648f6", "sha256:c08e95114951dc2090c4a630c2385bef681cacf12636fb0241accdc6b303fd81", "sha256:c5518d51a0735b1e6cee1fdce66359f8d2b59c3ca85dc2b0813a8aa86818a030", "sha256:c8fd0f1ae9d92b42854b2979024d7597685ce4ada367172ed7c09edf2cef9cb8", "sha256:ca3820eb7f7faf7f0aa88de0e54681bddcb46e485beb844fcecbcd1c8bd01689", "sha256:cf8b574c7b9aa060c62116d4181f3a1a4e821b2ec5cbfe3775809474113748d4", "sha256:d3155d828dec1d43283bd24d3d3e0d9c7c350cdfcc0bd06c0ad1209c1bbc36d0", "sha256:f8d6f8db88049a699817fd9178782867bf22283e3813064302ac59f61d95be05", "sha256:fd34fbbfbc40628200730bc1febe30631347103fc8d3d4fa012c21ab9c11eca9" ], "markers": "python_version >= '3.6'", "version": "==1.3.1" }, "libcellml": { "hashes": [ "sha256:2e449be48bffb827cd4e9497d7781166e735c876e6850985ee073e44fb3107b2", "sha256:3ecb9cc3f058e41056ae0609eec2636e98832b3b11cb4f4412ef7497cea933c5", "sha256:52072c16b04c029bcef7d053f74be88800ec05f70569351f1fec4c07205e43bd", "sha256:a22905ef585f5ca3938ace4c56f4029c7dabeccc924cdf5a68067ca2b89ca568", "sha256:a23fbfe06fc07cbfb502f99965d8ada8a943b422f44ec832b814c56a188fe63d", "sha256:d28ac0a111e16a9160c9e401b8e0167f446e9b94d7dd6cf1301996dcffdc792d", "sha256:dad3221360b6083cd68960b135fa51a9e892b8b0b9183913ee98c0623812a382" ], "version": "==0.2.0.dev21" }, "libneuroml": { "hashes": [ "sha256:58ee91db65515be09b3f0f2c98ff259b98522cfa11e754ed2b62fae00f308b86", "sha256:b18a46c1ef734465cb646bdfdd0a4022954265140178422fa90d81b9dca29b95" ], "version": "==0.2.55" }, "libroadrunner": { "hashes": [ "sha256:13997d1fbdda59775358352c7b83626a00a95a01540c2ae3a4d0656ddd826ce9", "sha256:4186248b3e4c8aa0f6c4714bb2ee3d8d9df6cd2d51e3d3360155c1db1c09ab0a", "sha256:43489e700b48cfcefabe7af13c2687e17958277b22fda8f0b83e88eb15e20cc0", "sha256:6a4a7cc21b0876976df15eb4bd77ca06c14a01f176bbd49f9ac2c674fc97831c", "sha256:6eefc59a05b2aa15d263595c13d09dd83bb0b34b902f981b0f57ec12e9f313e1", "sha256:88f5c0b2fabbf85ef1090b31174a5b37622becf6a90415073c5f1bf8e0a15f67", "sha256:a94556f8d86e87aee6505a0405806b383ef11cef55ba24e0e683e60b91d0584e", "sha256:afff76a7d21261acfa7a7d23d130c91a6146eb936f56238a8afe0ae784572911", "sha256:c48f56e37986726b96cfd3702604a97384106c52d6f003a43c21b2dab3bb6c03", "sha256:d9fafe6c7e0f8375fd3f16503e40cbe69da3a218fbb60c184259c6670319adb3", "sha256:fbad946d8b62e1577819825cae4bc7e9643a5ab0926bfa77214057a3db8b579c", "sha256:fc1e6e1b66190bc3abe24e0a34ba17dedd42a42bffedc133de8eac738656e909" ], "version": "==2.0.5" }, "lxml": { "hashes": [ "sha256:079f3ae844f38982d156efce585bc540c16a926d4436712cf4baee0cce487a3d", "sha256:0fbcf5565ac01dff87cbfc0ff323515c823081c5777a9fc7703ff58388c258c3", "sha256:122fba10466c7bd4178b07dba427aa516286b846b2cbd6f6169141917283aae2", "sha256:1b38116b6e628118dea5b2186ee6820ab138dbb1e24a13e478490c7db2f326ae", "sha256:1b7584d421d254ab86d4f0b13ec662a9014397678a7c4265a02a6d7c2b18a75f", "sha256:26e761ab5b07adf5f555ee82fb4bfc35bf93750499c6c7614bd64d12aaa67927", "sha256:289e9ca1a9287f08daaf796d96e06cb2bc2958891d7911ac7cae1c5f9e1e0ee3", "sha256:2a9d50e69aac3ebee695424f7dbd7b8c6d6eb7de2a2eb6b0f6c7db6aa41e02b7", "sha256:3082c518be8e97324390614dacd041bb1358c882d77108ca1957ba47738d9d59", "sha256:33bb934a044cf32157c12bfcfbb6649807da20aa92c062ef51903415c704704f", "sha256:3439c71103ef0e904ea0a1901611863e51f50b5cd5e8654a151740fde5e1cade", "sha256:36108c73739985979bf302006527cf8a20515ce444ba916281d1c43938b8bb96", "sha256:39b78571b3b30645ac77b95f7c69d1bffc4cf8c3b157c435a34da72e78c82468", "sha256:4289728b5e2000a4ad4ab8da6e1db2e093c63c08bdc0414799ee776a3f78da4b", "sha256:4bff24dfeea62f2e56f5bab929b4428ae6caba2d1eea0c2d6eb618e30a71e6d4", "sha256:4c61b3a0db43a1607d6264166b230438f85bfed02e8cff20c22e564d0faff354", "sha256:542d454665a3e277f76954418124d67516c5f88e51a900365ed54a9806122b83", "sha256:5a0a14e264069c03e46f926be0d8919f4105c1623d620e7ec0e612a2e9bf1c04", "sha256:5c8c163396cc0df3fd151b927e74f6e4acd67160d6c33304e805b84293351d16", "sha256:64812391546a18896adaa86c77c59a4998f33c24788cadc35789e55b727a37f4", "sha256:66e575c62792c3f9ca47cb8b6fab9e35bab91360c783d1606f758761810c9791", "sha256:6f12e1427285008fd32a6025e38e977d44d6382cf28e7201ed10d6c1698d2a9a", "sha256:74f7d8d439b18fa4c385f3f5dfd11144bb87c1da034a466c5b5577d23a1d9b51", "sha256:7610b8c31688f0b1be0ef882889817939490a36d0ee880ea562a4e1399c447a1", "sha256:76fa7b1362d19f8fbd3e75fe2fb7c79359b0af8747e6f7141c338f0bee2f871a", "sha256:7728e05c35412ba36d3e9795ae8995e3c86958179c9770e65558ec3fdfd3724f", "sha256:8157dadbb09a34a6bd95a50690595e1fa0af1a99445e2744110e3dca7831c4ee", "sha256:820628b7b3135403540202e60551e741f9b6d3304371712521be939470b454ec", "sha256:884ab9b29feaca361f7f88d811b1eea9bfca36cf3da27768d28ad45c3ee6f969", "sha256:89b8b22a5ff72d89d48d0e62abb14340d9e99fd637d046c27b8b257a01ffbe28", "sha256:92e821e43ad382332eade6812e298dc9701c75fe289f2a2d39c7960b43d1e92a", "sha256:b007cbb845b28db4fb8b6a5cdcbf65bacb16a8bd328b53cbc0698688a68e1caa", "sha256:bc4313cbeb0e7a416a488d72f9680fffffc645f8a838bd2193809881c67dd106", "sha256:bccbfc27563652de7dc9bdc595cb25e90b59c5f8e23e806ed0fd623755b6565d", "sha256:c1a40c06fd5ba37ad39caa0b3144eb3772e813b5fb5b084198a985431c2f1e8d", "sha256:c47ff7e0a36d4efac9fd692cfa33fbd0636674c102e9e8d9b26e1b93a94e7617", "sha256:c4f05c5a7c49d2fb70223d0d5bcfbe474cf928310ac9fa6a7c6dddc831d0b1d4", "sha256:cdaf11d2bd275bf391b5308f86731e5194a21af45fbaaaf1d9e8147b9160ea92", "sha256:ce256aaa50f6cc9a649c51be3cd4ff142d67295bfc4f490c9134d0f9f6d58ef0", "sha256:d2e35d7bf1c1ac8c538f88d26b396e73dd81440d59c1ef8522e1ea77b345ede4", "sha256:d916d31fd85b2f78c76400d625076d9124de3e4bda8b016d25a050cc7d603f24", "sha256:df7c53783a46febb0e70f6b05df2ba104610f2fb0d27023409734a3ecbb78fb2", "sha256:e1cbd3f19a61e27e011e02f9600837b921ac661f0c40560eefb366e4e4fb275e", "sha256:efac139c3f0bf4f0939f9375af4b02c5ad83a622de52d6dfa8e438e8e01d0eb0", "sha256:efd7a09678fd8b53117f6bae4fa3825e0a22b03ef0a932e070c0bdbb3a35e654", "sha256:f2380a6376dfa090227b663f9678150ef27543483055cc327555fb592c5967e2", "sha256:f8380c03e45cf09f8557bdaa41e1fa7c81f3ae22828e1db470ab2a6c96d8bc23", "sha256:f90ba11136bfdd25cae3951af8da2e95121c9b9b93727b1b896e3fa105b2f586" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==4.6.3" }, "markupsafe": { "hashes": [ "sha256:01a9b8ea66f1658938f65b93a85ebe8bc016e6769611be228d797c9d998dd298", "sha256:023cb26ec21ece8dc3907c0e8320058b2e0cb3c55cf9564da612bc325bed5e64", "sha256:0446679737af14f45767963a1a9ef7620189912317d095f2d9ffa183a4d25d2b", "sha256:0717a7390a68be14b8c793ba258e075c6f4ca819f15edfc2a3a027c823718567", "sha256:0955295dd5eec6cb6cc2fe1698f4c6d84af2e92de33fbcac4111913cd100a6ff", "sha256:0d4b31cc67ab36e3392bbf3862cfbadac3db12bdd8b02a2731f509ed5b829724", "sha256:10f82115e21dc0dfec9ab5c0223652f7197feb168c940f3ef61563fc2d6beb74", "sha256:168cd0a3642de83558a5153c8bd34f175a9a6e7f6dc6384b9655d2697312a646", "sha256:1d609f577dc6e1aa17d746f8bd3c31aa4d258f4070d61b2aa5c4166c1539de35", "sha256:1f2ade76b9903f39aa442b4aadd2177decb66525062db244b35d71d0ee8599b6", "sha256:2a7d351cbd8cfeb19ca00de495e224dea7e7d919659c2841bbb7f420ad03e2d6", "sha256:2d7d807855b419fc2ed3e631034685db6079889a1f01d5d9dac950f764da3dad", "sha256:2ef54abee730b502252bcdf31b10dacb0a416229b72c18b19e24a4509f273d26", "sha256:36bc903cbb393720fad60fc28c10de6acf10dc6cc883f3e24ee4012371399a38", "sha256:37205cac2a79194e3750b0af2a5720d95f786a55ce7df90c3af697bfa100eaac", "sha256:3c112550557578c26af18a1ccc9e090bfe03832ae994343cfdacd287db6a6ae7", "sha256:3dd007d54ee88b46be476e293f48c85048603f5f516008bee124ddd891398ed6", "sha256:47ab1e7b91c098ab893b828deafa1203de86d0bc6ab587b160f78fe6c4011f75", "sha256:49e3ceeabbfb9d66c3aef5af3a60cc43b85c33df25ce03d0031a608b0a8b2e3f", "sha256:4efca8f86c54b22348a5467704e3fec767b2db12fc39c6d963168ab1d3fc9135", "sha256:53edb4da6925ad13c07b6d26c2a852bd81e364f95301c66e930ab2aef5b5ddd8", "sha256:5855f8438a7d1d458206a2466bf82b0f104a3724bf96a1c781ab731e4201731a", "sha256:594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a", "sha256:5bb28c636d87e840583ee3adeb78172efc47c8b26127267f54a9c0ec251d41a9", "sha256:60bf42e36abfaf9aff1f50f52644b336d4f0a3fd6d8a60ca0d054ac9f713a864", "sha256:611d1ad9a4288cf3e3c16014564df047fe08410e628f89805e475368bd304914", "sha256:6557b31b5e2c9ddf0de32a691f2312a32f77cd7681d8af66c2692efdbef84c18", "sha256:693ce3f9e70a6cf7d2fb9e6c9d8b204b6b39897a2c4a1aa65728d5ac97dcc1d8", "sha256:6a7fae0dd14cf60ad5ff42baa2e95727c3d81ded453457771d02b7d2b3f9c0c2", "sha256:6c4ca60fa24e85fe25b912b01e62cb969d69a23a5d5867682dd3e80b5b02581d", "sha256:6fcf051089389abe060c9cd7caa212c707e58153afa2c649f00346ce6d260f1b", "sha256:7d91275b0245b1da4d4cfa07e0faedd5b0812efc15b702576d103293e252af1b", "sha256:905fec760bd2fa1388bb5b489ee8ee5f7291d692638ea5f67982d968366bef9f", "sha256:97383d78eb34da7e1fa37dd273c20ad4320929af65d156e35a5e2d89566d9dfb", "sha256:984d76483eb32f1bcb536dc27e4ad56bba4baa70be32fa87152832cdd9db0833", "sha256:99df47edb6bda1249d3e80fdabb1dab8c08ef3975f69aed437cb69d0a5de1e28", "sha256:a30e67a65b53ea0a5e62fe23682cfe22712e01f453b95233b25502f7c61cb415", "sha256:ab3ef638ace319fa26553db0624c4699e31a28bb2a835c5faca8f8acf6a5a902", "sha256:add36cb2dbb8b736611303cd3bfcee00afd96471b09cda130da3581cbdc56a6d", "sha256:b2f4bf27480f5e5e8ce285a8c8fd176c0b03e93dcc6646477d4630e83440c6a9", "sha256:b7f2d075102dc8c794cbde1947378051c4e5180d52d276987b8d28a3bd58c17d", "sha256:baa1a4e8f868845af802979fcdbf0bb11f94f1cb7ced4c4b8a351bb60d108145", "sha256:be98f628055368795d818ebf93da628541e10b75b41c559fdf36d104c5787066", "sha256:bf5d821ffabf0ef3533c39c518f3357b171a1651c1ff6827325e4489b0e46c3c", "sha256:c47adbc92fc1bb2b3274c4b3a43ae0e4573d9fbff4f54cd484555edbf030baf1", "sha256:d7f9850398e85aba693bb640262d3611788b1f29a79f0c93c565694658f4071f", "sha256:d8446c54dc28c01e5a2dbac5a25f071f6653e6e40f3a8818e8b45d790fe6ef53", "sha256:e0f138900af21926a02425cf736db95be9f4af72ba1bb21453432a07f6082134", "sha256:e9936f0b261d4df76ad22f8fee3ae83b60d7c3e871292cd42f40b81b70afae85", "sha256:f5653a225f31e113b152e56f154ccbe59eeb1c7487b39b9d9f9cdb58e6c79dc5", "sha256:f826e31d18b516f653fe296d967d700fddad5901ae07c622bb3705955e1faa94", "sha256:f8ba0e8349a38d3001fae7eadded3f6606f0da5d748ee53cc1dab1d6527b9509", "sha256:f9081981fe268bd86831e5c75f7de206ef275defcb82bc70740ae6dc507aee51", "sha256:fa130dd50c57d53368c9d59395cb5526eda596d3ffe36666cd81a44d56e48872" ], "markers": "python_version >= '3.6'", "version": "==2.0.1" }, "masspy": { "hashes": [ "sha256:123de2255c4f47671cf0d4653480b59cd051a7cbc8ad146dc9ace8e175ab8b8c", "sha256:b903acfd0db8ce6564f9daa7467d0b72994a39fc85c5f31ac551b10fc4c0ec1d" ], "markers": "python_version >= '3.6'", "version": "==0.1.2" }, "matplotlib": { "hashes": [ "sha256:0711b07920919951b2c508a773c433cbe07bdad952ea84ed9d18ca7853ccbe8b", "sha256:0ab307e610302971012dc2387c97fc68e58c8eb00045a2c735da1b16353a3e3f", "sha256:651d76daf9168250370d4befb09f79875daa2224a9096d97dfc3ed764c842be4", "sha256:8e931015769322ee6860cabb8f975f628788e851092fd5edbdb065b5a516e3af", "sha256:97a03e73f9ab71db8e4084894550c3af420c8ab1989b5e1306261b17576bf61b", "sha256:9d174cc9681184023a7d520079eb0c085208761c6562710c1de7263d08217ab6", "sha256:b21479a4478070c1c0f460e1bf1b65341e6a70ae0da905fcee836651450c66bb", "sha256:b93377c6720e7db9cbba57e856a21aae2ff707677a6ee6b3b9d485f22ed82697", "sha256:be937f34047bc09ed22d6a19d970fdc61d5d3191aa62f3262fc7f308e6d2e7f9", "sha256:d281862a68b0bfce8f9e02a8e5acaa5cfbec37f37320f59b52eaf54b6423ec13", "sha256:d5287cfcabad6f0f71a2627c1bbb6fb0cddacb9844f6c91f210604faa508f562", "sha256:d75f5e952562f5e494ae92c1f917fc96c2ce09305a7c1bdc2e6502d3c61fbdc3", "sha256:ee8acb1d4ee204e5cfe361d8f00d7e52c68f81c099b6c6048a3c76bf2c6b46e6", "sha256:fc84f7c7cf1c5a9dbceadb7546818228f019d3b113ce5e362120c895fbba2944" ], "markers": "python_version >= '3.6'", "version": "==3.2.0" }, "matplotlib-inline": { "hashes": [ "sha256:5cf1176f554abb4fa98cb362aa2b55c500147e4bdbb07e3fda359143e1da0811", "sha256:f41d5ff73c9f5385775d5c0bc13b424535c8402fe70ea8210f93e11f3683993e" ], "markers": "python_version >= '3.5'", "version": "==0.1.2" }, "mistune": { "hashes": [ "sha256:59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e", "sha256:88a1051873018da288eee8538d476dffe1262495144b33ecb586c4ab266bb8d4" ], "version": "==0.8.4" }, "mpmath": { "hashes": [ "sha256:604bc21bd22d2322a177c73bdb573994ef76e62edd595d17e00aff24b0667e5c", "sha256:79ffb45cf9f4b101a807595bcb3e72e0396202e0b1d25d689134b48c4216a81a" ], "version": "==1.2.1" }, "natsort": { "hashes": [ "sha256:00c603a42365830c4722a2eb7663a25919551217ec09a243d3399fa8dd4ac403", "sha256:d0f4fc06ca163fa4a5ef638d9bf111c67f65eedcc7920f98dec08e489045b67e" ], "index": "pypi", "version": "==7.1.1" }, "nbclient": { "hashes": [ "sha256:6c8ad36a28edad4562580847f9f1636fe5316a51a323ed85a24a4ad37d4aefce", "sha256:95a300c6fbe73721736cf13972a46d8d666f78794b832866ed7197a504269e11" ], "markers": "python_full_version >= '3.6.1'", "version": "==0.5.4" }, "nbconvert": { "hashes": [ "sha256:37cd92ff2ae6a268e62075ff8b16129e0be4939c4dfcee53dc77cc8a7e06c684", "sha256:d22a8ff202644d31db254d24d52c3a96c82156623fcd7c7f987bba2612303ec9" ], "markers": "python_version >= '3.7'", "version": "==6.1.0" }, "nbformat": { "hashes": [ "sha256:b516788ad70771c6250977c1374fcca6edebe6126fd2adb5a69aa5c2356fd1c8", "sha256:eb8447edd7127d043361bc17f2f5a807626bc8e878c7709a1c647abda28a9171" ], "markers": "python_version >= '3.5'", "version": "==5.1.3" }, "nbopen": { "hashes": [ "sha256:0aa53525a6ec3de403635dd91bab7607c451a67b275492947d6934963902ffa1", "sha256:5d3b9de63fb7e2a9658bc474d957c40e3ac2f101ae98b886f9259c66707c41db" ], "markers": "python_version >= '3.5'", "version": "==0.6" }, "nest-asyncio": { "hashes": [ "sha256:76d6e972265063fe92a90b9cc4fb82616e07d586b346ed9d2c89a4187acea39c", "sha256:afc5a1c515210a23c461932765691ad39e8eba6551c055ac8d5546e69250d0aa" ], "markers": "python_version >= '3.5'", "version": "==1.5.1" }, "networkx": { "hashes": [ "sha256:2306f1950ce772c5a59a57f5486d59bb9cab98497c45fc49cbc45ac0dec119bb", "sha256:5fcb7004be69e8fbdf07dcb502efa5c77cadcaad6982164134eeb9721f826c2e" ], "markers": "python_version >= '3.7'", "version": "==2.6.2" }, "neuromllite": { "hashes": [ "sha256:a416cb72832e63eba4be109af32ed572a4dedf60e9847ec204d08e2aabe84d7a", "sha256:f6858464ce66dd1e21d1d53297e25d69a9dbe028403f1ef4031e8a48d8a83b5e" ], "version": "==0.3.2" }, "nose": { "hashes": [ "sha256:9ff7c6cc443f8c51994b34a667bbcf45afd6d945be7477b52e97516fd17c53ac", "sha256:dadcddc0aefbf99eea214e0f1232b94f2fa9bd98fa8353711dacb112bfcbbb2a", "sha256:f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98" ], "version": "==1.3.7" }, "notebook": { "hashes": [ "sha256:b50eafa8208d5db966efd1caa4076b4dfc51815e02a805b32ecd717e9e6cc071", "sha256:e6b6dfed36b00cf950f63c0d42e947c101d4258aec21624de62b9e0c11ed5c0d" ], "markers": "python_version >= '3.6'", "version": "==6.4.3" }, "numpy": { "hashes": [ "sha256:0ee77786eebbfa37f2141fd106b549d37c89207a0d01d8852fde1c82e9bfc0e7", "sha256:199bebc296bd8a5fc31c16f256ac873dd4d5b4928dfd50e6c4995570fc71a8f3", "sha256:1a307bdd3dd444b1d0daa356b5f4c7de2e24d63bdc33ea13ff718b8ec4c6a268", "sha256:1ea7e859f16e72ab81ef20aae69216cfea870676347510da9244805ff9670170", "sha256:271139653e8b7a046d11a78c0d33bafbddd5c443a5b9119618d0652a4eb3a09f", "sha256:35bf5316af8dc7c7db1ad45bec603e5fb28671beb98ebd1d65e8059efcfd3b72", "sha256:463792a249a81b9eb2b63676347f996d3f0082c2666fd0604f4180d2e5445996", "sha256:50d3513469acf5b2c0406e822d3f314d7ac5788c2b438c24e5dd54d5a81ef522", "sha256:50f68ebc439821b826823a8da6caa79cd080dee2a6d5ab9f1163465a060495ed", "sha256:51e8d2ae7c7e985c7bebf218e56f72fa93c900ad0c8a7d9fbbbf362f45710f69", "sha256:522053b731e11329dd52d258ddf7de5288cae7418b55e4b7d32f0b7e31787e9d", "sha256:5ea4401ada0d3988c263df85feb33818dc995abc85b8125f6ccb762009e7bc68", "sha256:604d2e5a31482a3ad2c88206efd43d6fcf666ada1f3188fd779b4917e49b7a98", "sha256:6ff88bcf1872b79002569c63fe26cd2cda614e573c553c4d5b814fb5eb3d2822", "sha256:7197ee0a25629ed782c7bd01871ee40702ffeef35bc48004bc2fdcc71e29ba9d", "sha256:741d95eb2b505bb7a99fbf4be05fa69f466e240c2b4f2d3ddead4f1b5f82a5a5", "sha256:83af653bb92d1e248ccf5fdb05ccc934c14b936bcfe9b917dc180d3f00250ac6", "sha256:8802d23e4895e0c65e418abe67cdf518aa5cbb976d97f42fd591f921d6dffad0", "sha256:8edc4d687a74d0a5f8b9b26532e860f4f85f56c400b3a98899fc44acb5e27add", "sha256:942d2cdcb362739908c26ce8dd88db6e139d3fa829dd7452dd9ff02cba6b58b2", "sha256:9a0669787ba8c9d3bb5de5d9429208882fb47764aa79123af25c5edc4f5966b9", "sha256:9d08d84bb4128abb9fbd9f073e5c69f70e5dab991a9c42e5b4081ea5b01b5db0", "sha256:9f7f56b5e85b08774939622b7d45a5d00ff511466522c44fc0756ac7692c00f2", "sha256:a2daea1cba83210c620e359de2861316f49cc7aea8e9a6979d6cb2ddab6dda8c", "sha256:b9074d062d30c2779d8af587924f178a539edde5285d961d2dfbecbac9c4c931", "sha256:c4aa79993f5d856765819a3651117520e41ac3f89c3fc1cb6dee11aa562df6da", "sha256:d78294f1c20f366cde8a75167f822538a7252b6e8b9d6dbfb3bdab34e7c1929e", "sha256:dfdc8b53aa9838b9d44ed785431ca47aa3efaa51d0d5dd9c412ab5247151a7c4", "sha256:dffed17848e8b968d8d3692604e61881aa6ef1f8074c99e81647ac84f6038535", "sha256:e080087148fd70469aade2abfeadee194357defd759f9b59b349c6192aba994c", "sha256:e983cbabe10a8989333684c98fdc5dd2f28b236216981e0c26ed359aaa676772", "sha256:ea6171d2d8d648dee717457d0f75db49ad8c2f13100680e284d7becf3dc311a6", "sha256:eefc13863bf01583a85e8c1121a901cc7cb8f059b960c4eba30901e2e6aba95f", "sha256:efd656893171bbf1331beca4ec9f2e74358fc732a2084f664fd149cc4b3441d2" ], "index": "pypi", "version": "==1.19.3" }, "openapi-schema-validator": { "hashes": [ "sha256:215b516d0942f4e8e2446cf3f7d4ff2ed71d102ebddcc30526d8a3f706ab1df6", "sha256:a4b2712020284cee880b4c55faa513fbc2f8f07f365deda6098f8ab943c9f0df", "sha256:b65d6c2242620bfe76d4c749b61cd9657e4528895a8f4fb6f916085b508ebd24" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==0.1.5" }, "openapi-spec-validator": { "hashes": [ "sha256:0a7da925bad4576f4518f77302c0b1990adb2fbcbe7d63fb4ed0de894cad8bdd", "sha256:3d70e6592754799f7e77a45b98c6a91706bdd309a425169d17d8e92173e198a2", "sha256:ba28b06e63274f2bc6de995a07fb572c657e534425b5baf68d9f7911efe6929f" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==0.3.1" }, "openpyxl": { "hashes": [ "sha256:46af4eaf201a89b610fcca177eed957635f88770a5462fb6aae4a2a52b0ff516", "sha256:6456a3b472e1ef0facb1129f3c6ef00713cebf62e736cd7a75bcc3247432f251" ], "markers": "python_version >= '3.6'", "version": "==3.0.7" }, "optlang": { "hashes": [ "sha256:14464cff638b58670c1a7f5896f19dd7b595a12c1d30a27c59074700833c1677", "sha256:5514364aa06bf24381c6777188b2df79b13def2743312bdb80277392cdbb6477" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==1.5.2" }, "packaging": { "hashes": [ "sha256:7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7", "sha256:c86254f9220d55e31cc94d69bade760f0847da8000def4dfe1c6b872fd14ff14" ], "markers": "python_version >= '3.6'", "version": "==21.0" }, "pandas": { "hashes": [ "sha256:0cd5776be891331a3e6b425b5abeab9596abea18435c5982191356f9b24ae731", "sha256:1099e2a0cd3a01ec62cca183fc1555833a2d43764950ef8cb5948c8abfc51014", "sha256:132def05e73d292c949b02e7ef873debb77acc44a8b119d215921046f0c3a91d", "sha256:1738154049062156429a5cf2fd79a69c9f3fa4f231346a7ec6fd156cd1a9a621", "sha256:34ced9ce5d5b17b556486da7256961b55b471d64a8990b56e67a84ebeb259416", "sha256:53b17e4debba26b7446b1e4795c19f94f0c715e288e08145e44bdd2865e819b3", "sha256:59a78d7066d1c921a77e3306aa0ebf6e55396c097d5dfcc4df8defe3dcecb735", "sha256:66a95361b81b4ba04b699ecd2416b0591f40cd1e24c60a8bfe0d19009cfa575a", "sha256:69e1b2f5811f46827722fd641fdaeedb26002bd1e504eacc7a8ec36bdc25393e", "sha256:7996d311413379136baf0f3cf2a10e331697657c87ced3f17ac7c77f77fe34a3", "sha256:89f40e5d21814192802421df809f948247d39ffe171e45fe2ab4abf7bd4279d8", "sha256:9cce01f6d655b4add966fcd36c32c5d1fe84628e200626b3f5e2f40db2d16a0f", "sha256:a56246de744baf646d1f3e050c4653d632bc9cd2e0605f41051fea59980e880a", "sha256:ba7ceb8abc6dbdb1e34612d1173d61e4941f1a1eb7e6f703b2633134ae6a6c89", "sha256:c9e8e0ce5284ebebe110efd652c164ed6eab77f5de4c3533abc756302ee77765", "sha256:cbcb84d63867af3411fa063af3de64902665bb5b3d40b25b2059e40603594e87", "sha256:f07a9745ca075ae73a5ce116f5e58f691c0dc9de0bff163527858459df5c176f", "sha256:fa54dc1d3e5d004a09ab0b1751473698011ddf03e14f1f59b84ad9a6ac630975", "sha256:fcb71b1935249de80e3a808227189eee381d4d74a31760ced2df21eedc92a8e3" ], "markers": "python_full_version >= '3.7.1'", "version": "==1.3.2" }, "pandocfilters": { "hashes": [ "sha256:bc63fbb50534b4b1f8ebe1860889289e8af94a23bff7445259592df25a3906eb" ], "version": "==1.4.3" }, "parso": { "hashes": [ "sha256:12b83492c6239ce32ff5eed6d3639d6a536170723c6f3f1506869f1ace413398", "sha256:a8c4922db71e4fdb90e0d0bc6e50f9b273d3397925e5e60a717e719201778d22" ], "markers": "python_version >= '3.6'", "version": "==0.8.2" }, "pexpect": { "hashes": [ "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937", "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c" ], "markers": "sys_platform != 'win32'", "version": "==4.8.0" }, "phrasedml": { "hashes": [ "sha256:064642e29122b901015d9995ded4ae81f6d2a8df80e4f1e55713968a062b37da", "sha256:06e10e6782f8b0203d7607e35d28c5094c76cb9cdb6e81661c7383f1503d6bfd", "sha256:20d5c5e0a99aaa389f262defc01320cac86b88a3b8c388789a75953eef944456", "sha256:68b6733b4bf90e7f3ba85e023a67df111e272ec27753611e4019c0d5ebdd5b1c", "sha256:7e2506779ec9a054453e10a8faf3195d8007e89437f494d4203eedff74065c76", "sha256:872caa0ab6e2d38728190d770df5eb665eda7c85d2790dc63c777f0d0e282146", "sha256:af663fa31ec162dfb0e6a6d950c88c2005fde9e9dfb8a922946699a842ef1fc9", "sha256:b2bdaf35e8df22703443729f8b97c6cb321796117e4a8c33dd815a60c5420160", "sha256:b37f5f952f1bba6b04ff19ab513f8999f43c51a5c485b1843f7c7221c1a646ca", "sha256:b85f07a1ea2c1c1422ae4fa3c597ca85eff6ae63fd270fe25663aca04dde949a", "sha256:bc23dcd346a31a9adf3f3c7b6b521799de87a479c38684b7daae4ac845ed3d27", "sha256:ed80b60fa6a607c96cdf347fb5e6df40dbc65672a1678c850377df7393ef8cf4" ], "version": "==1.1.1" }, "pickleshare": { "hashes": [ "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca", "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56" ], "version": "==0.7.5" }, "pint": { "hashes": [ "sha256:6593c5dfaf2f701c54f17453191dff05e90ec9ebc3d1901468a59cfcb3289a4c", "sha256:f4d0caa713239e6847a7c6eefe2427358566451fe56497d533f21fb590a3f313" ], "version": "==0.17" }, "pkgconfig": { "hashes": [ "sha256:d20023bbeb42ee6d428a0fac6e0904631f545985a10cdd71a20aa58bc47a4209", "sha256:deb4163ef11f75b520d822d9505c1f462761b4309b1bb713d08689759ea8b899" ], "markers": "python_version >= '3.3' and python_version < '4'", "version": "==1.5.5" }, "plotly": { "hashes": [ "sha256:1575c34f87313818fc109a3d3326f2b91363d049c1e80cbf68561c8df24fb47c", "sha256:bf7c8123541a2c6579c309561a8e1058c129434c67419651efbdc4922b11da8f" ], "markers": "python_version >= '3.6'", "version": "==5.2.1" }, "pluggy": { "hashes": [ "sha256:265a94bf44ca13662f12fcd1b074c14d4b269a712f051b6f644ef7e705d6735f", "sha256:467f0219e89bb5061a8429c6fc5cf055fa3983a0e68e84a1d205046306b37d9e" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.0.0.dev0" }, "prometheus-client": { "hashes": [ "sha256:3a8baade6cb80bcfe43297e33e7623f3118d660d41387593758e2fb1ea173a86", "sha256:b014bc76815eb1399da8ce5fc84b7717a3e63652b0c0f8804092c9363acab1b2" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==0.11.0" }, "prompt-toolkit": { "hashes": [ "sha256:6076e46efae19b1e0ca1ec003ed37a933dc94b4d20f486235d436e64771dcd5c", "sha256:eb71d5a6b72ce6db177af4a7d4d7085b99756bf656d98ffcc4fecd36850eea6c" ], "markers": "python_full_version >= '3.6.2'", "version": "==3.0.20" }, "pronto": { "hashes": [ "sha256:1094be501a6ad43694885a83dc952a8e66759eb872426615f35d19af641f8ff4", "sha256:13f1b8bad282dd0226c1e20c141d9ab44f30f7fad70b1863f6f681577db9cd64" ], "markers": "python_version >= '3.6'", "version": "==2.4.3" }, "psutil": { "hashes": [ "sha256:0066a82f7b1b37d334e68697faba68e5ad5e858279fd6351c8ca6024e8d6ba64", "sha256:02b8292609b1f7fcb34173b25e48d0da8667bc85f81d7476584d889c6e0f2131", "sha256:0ae6f386d8d297177fd288be6e8d1afc05966878704dad9847719650e44fc49c", "sha256:0c9ccb99ab76025f2f0bbecf341d4656e9c1351db8cc8a03ccd62e318ab4b5c6", "sha256:0dd4465a039d343925cdc29023bb6960ccf4e74a65ad53e768403746a9207023", "sha256:12d844996d6c2b1d3881cfa6fa201fd635971869a9da945cf6756105af73d2df", "sha256:1bff0d07e76114ec24ee32e7f7f8d0c4b0514b3fae93e3d2aaafd65d22502394", "sha256:245b5509968ac0bd179287d91210cd3f37add77dad385ef238b275bad35fa1c4", "sha256:28ff7c95293ae74bf1ca1a79e8805fcde005c18a122ca983abf676ea3466362b", "sha256:36b3b6c9e2a34b7d7fbae330a85bf72c30b1c827a4366a07443fc4b6270449e2", "sha256:52de075468cd394ac98c66f9ca33b2f54ae1d9bff1ef6b67a212ee8f639ec06d", "sha256:5da29e394bdedd9144c7331192e20c1f79283fb03b06e6abd3a8ae45ffecee65", "sha256:61f05864b42fedc0771d6d8e49c35f07efd209ade09a5afe6a5059e7bb7bf83d", "sha256:6223d07a1ae93f86451d0198a0c361032c4c93ebd4bf6d25e2fb3edfad9571ef", "sha256:6323d5d845c2785efb20aded4726636546b26d3b577aded22492908f7c1bdda7", "sha256:6ffe81843131ee0ffa02c317186ed1e759a145267d54fdef1bc4ea5f5931ab60", "sha256:74f2d0be88db96ada78756cb3a3e1b107ce8ab79f65aa885f76d7664e56928f6", "sha256:74fb2557d1430fff18ff0d72613c5ca30c45cdbfcddd6a5773e9fc1fe9364be8", "sha256:90d4091c2d30ddd0a03e0b97e6a33a48628469b99585e2ad6bf21f17423b112b", "sha256:90f31c34d25b1b3ed6c40cdd34ff122b1887a825297c017e4cbd6796dd8b672d", "sha256:99de3e8739258b3c3e8669cb9757c9a861b2a25ad0955f8e53ac662d66de61ac", "sha256:c6a5fd10ce6b6344e616cf01cc5b849fa8103fbb5ba507b6b2dee4c11e84c935", "sha256:ce8b867423291cb65cfc6d9c4955ee9bfc1e21fe03bb50e177f2b957f1c2469d", "sha256:d225cd8319aa1d3c85bf195c4e07d17d3cd68636b8fc97e6cf198f782f99af28", "sha256:ea313bb02e5e25224e518e4352af4bf5e062755160f77e4b1767dd5ccb65f876", "sha256:ea372bcc129394485824ae3e3ddabe67dc0b118d262c568b4d2602a7070afdb0", "sha256:f4634b033faf0d968bb9220dd1c793b897ab7f1189956e1aa9eae752527127d3", "sha256:fcc01e900c1d7bee2a37e5d6e4f9194760a93597c97fee89c4ae51701de03563" ], "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==5.8.0" }, "ptyprocess": { "hashes": [ "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220" ], "markers": "os_name != 'nt'", "version": "==0.7.0" }, "py": { "hashes": [ "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3", "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.10.0" }, "py4j": { "hashes": [ "sha256:624f97c363b8dd84822bc666b12fa7f7d97824632b2ff3d852cc491359ce7615", "sha256:bf0485388e415ff26710d2dc719cb0ede16cf1164b1ee757e0ebb2e98c471521" ], "version": "==0.10.9.2" }, "pycparser": { "hashes": [ "sha256:2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0", "sha256:7582ad22678f0fcd81102833f60ef8d0e57288b6b5fb00323d101be910e35705" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.20" }, "pydantic": { "hashes": [ "sha256:021ea0e4133e8c824775a0cfe098677acf6fa5a3cbf9206a376eed3fc09302cd", "sha256:05ddfd37c1720c392f4e0d43c484217b7521558302e7069ce8d318438d297739", "sha256:05ef5246a7ffd2ce12a619cbb29f3307b7c4509307b1b49f456657b43529dc6f", "sha256:10e5622224245941efc193ad1d159887872776df7a8fd592ed746aa25d071840", "sha256:18b5ea242dd3e62dbf89b2b0ec9ba6c7b5abaf6af85b95a97b00279f65845a23", "sha256:234a6c19f1c14e25e362cb05c68afb7f183eb931dd3cd4605eafff055ebbf287", "sha256:244ad78eeb388a43b0c927e74d3af78008e944074b7d0f4f696ddd5b2af43c62", "sha256:26464e57ccaafe72b7ad156fdaa4e9b9ef051f69e175dbbb463283000c05ab7b", "sha256:41b542c0b3c42dc17da70554bc6f38cbc30d7066d2c2815a94499b5684582ecb", "sha256:4a03cbbe743e9c7247ceae6f0d8898f7a64bb65800a45cbdc52d65e370570820", "sha256:4be75bebf676a5f0f87937c6ddb061fa39cbea067240d98e298508c1bda6f3f3", "sha256:54cd5121383f4a461ff7644c7ca20c0419d58052db70d8791eacbbe31528916b", "sha256:589eb6cd6361e8ac341db97602eb7f354551482368a37f4fd086c0733548308e", "sha256:8621559dcf5afacf0069ed194278f35c255dc1a1385c28b32dd6c110fd6531b3", "sha256:8b223557f9510cf0bfd8b01316bf6dd281cf41826607eada99662f5e4963f316", "sha256:99a9fc39470010c45c161a1dc584997f1feb13f689ecf645f59bb4ba623e586b", "sha256:a7c6002203fe2c5a1b5cbb141bb85060cbff88c2d78eccbc72d97eb7022c43e4", "sha256:a83db7205f60c6a86f2c44a61791d993dff4b73135df1973ecd9eed5ea0bda20", "sha256:ac8eed4ca3bd3aadc58a13c2aa93cd8a884bcf21cb019f8cfecaae3b6ce3746e", "sha256:e710876437bc07bd414ff453ac8ec63d219e7690128d925c6e82889d674bb505", "sha256:ea5cb40a3b23b3265f6325727ddfc45141b08ed665458be8c6285e7b85bd73a1", "sha256:fec866a0b59f372b7e776f2d7308511784dace622e0992a0b59ea3ccee0ae833" ], "markers": "python_full_version >= '3.6.1'", "version": "==1.8.2" }, "pydot": { "hashes": [ "sha256:248081a39bcb56784deb018977e428605c1c758f10897a339fce1dd728ff007d", "sha256:66c98190c65b8d2e2382a441b4c0edfdb4f4c025ef9cb9874de478fb0793a451" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.4.2" }, "pygments": { "hashes": [ "sha256:b8e67fe6af78f492b3c4b3e2970c0624cbf08beb1e493b2c99b9fa1b67a20380", "sha256:f398865f7eb6874156579fdf36bc840a03cab64d1cde9e93d68f46a425ec52c6" ], "markers": "python_version >= '3.5'", "version": "==2.10.0" }, "pylems": { "hashes": [ "sha256:ea1050e348b7072c8e1e64e8d8ac266da7723baef9d4ec0744110eb3fdc32279", "sha256:fef3c3da056dc7778b8c859039511fb4d18ad98d8cec946c6bf2e6e406ed4103" ], "version": "==0.5.5" }, "pyneuroml": { "hashes": [ "sha256:d8fd7177002d5f2b8db5a080a5cae993fecd9c18b07f88bd48eed4bfbb174919", "sha256:dace0f2685542fc27e3315df8ec3de2b8e2412cf31ebf21912b823b66b71b44c" ], "version": "==0.5.11" }, "pyomexmeta": { "hashes": [ "sha256:09d78feaa4cf61170789b79852a85588dcfc3fd0c71d891bb014f632129add58", "sha256:0af52b8b5ae676d07f14c6a84daa89565f41d337deb828790be651e8bc63598f", "sha256:24cd6859d90f044a9c832c60ae71cf7f4439228a8405b17cd8cb151f6c632963", "sha256:3cb22b1e9d53eef1d9e87020e79016c879337b6b830e8432fb4bf2e12add0ff0", "sha256:6f20245c407bb46e469d5871f096c5289d930663553833667aefd134c7ff6f61", "sha256:8529641a544605d496e56e2b8f93f21749ceb957f44f8e6e552afda432149b61", "sha256:abf5cac60d743098e1f203b839988b59c49eeec4f246f3a1bed015d3a1903447", "sha256:b0b31816a418d76de14d495067df9e6c36c1abe511e3114bb978cd5fc90188bd", "sha256:b2299856cfbe1c9f33a5518f1731bdebb97eb28a853d9164de14e48d6c6d3891" ], "version": "==1.2.11" }, "pyparsing": { "hashes": [ "sha256:10f1886e70da7b76ca1b4cf9bbd60f708ef037892496d5cb7c77ab2982412b2d", "sha256:e96a96967098a5221a78bf94d72930cd1cfaf0ab88dae2ea6bfc2b8b8ccb1930" ], "markers": "python_version >= '3.5'", "version": "==3.0.0b3" }, "pyrsistent": { "hashes": [ "sha256:097b96f129dd36a8c9e33594e7ebb151b1515eb52cceb08474c10a5479e799f2", "sha256:2aaf19dc8ce517a8653746d98e962ef480ff34b6bc563fc067be6401ffb457c7", "sha256:404e1f1d254d314d55adb8d87f4f465c8693d6f902f67eb6ef5b4526dc58e6ea", "sha256:48578680353f41dca1ca3dc48629fb77dfc745128b56fc01096b2530c13fd426", "sha256:4916c10896721e472ee12c95cdc2891ce5890898d2f9907b1b4ae0f53588b710", "sha256:527be2bfa8dc80f6f8ddd65242ba476a6c4fb4e3aedbf281dfbac1b1ed4165b1", "sha256:58a70d93fb79dc585b21f9d72487b929a6fe58da0754fa4cb9f279bb92369396", "sha256:5e4395bbf841693eaebaa5bb5c8f5cdbb1d139e07c975c682ec4e4f8126e03d2", "sha256:6b5eed00e597b5b5773b4ca30bd48a5774ef1e96f2a45d105db5b4ebb4bca680", "sha256:73ff61b1411e3fb0ba144b8f08d6749749775fe89688093e1efef9839d2dcc35", "sha256:772e94c2c6864f2cd2ffbe58bb3bdefbe2a32afa0acb1a77e472aac831f83427", "sha256:773c781216f8c2900b42a7b638d5b517bb134ae1acbebe4d1e8f1f41ea60eb4b", "sha256:a0c772d791c38bbc77be659af29bb14c38ced151433592e326361610250c605b", "sha256:b29b869cf58412ca5738d23691e96d8aff535e17390128a1a52717c9a109da4f", "sha256:c1a9ff320fa699337e05edcaae79ef8c2880b52720bc031b219e5b5008ebbdef", "sha256:cd3caef37a415fd0dae6148a1b6957a8c5f275a62cca02e18474608cb263640c", "sha256:d5ec194c9c573aafaceebf05fc400656722793dac57f254cd4741f3c27ae57b4", "sha256:da6e5e818d18459fa46fac0a4a4e543507fe1110e808101277c5a2b5bab0cd2d", "sha256:e79d94ca58fcafef6395f6352383fa1a76922268fa02caa2272fff501c2fdc78", "sha256:f3ef98d7b76da5eb19c37fda834d50262ff9167c65658d1d8f974d2e4d90676b", "sha256:f4c8cabb46ff8e5d61f56a037974228e978f26bfefce4f61a4b1ac0ba7a2ab72" ], "markers": "python_version >= '3.6'", "version": "==0.18.0" }, "pysces": { "git": "https://github.com/PySCeS/pysces.git", "ref": "7478a05bc4480e580fabfe89acb259274ced7f6c" }, "pytest": { "hashes": [ "sha256:50bcad0a0b9c5a72c8e4e7c9855a3ad496ca6a881a3641b4260605450772c54b", "sha256:91ef2131a9bd6be8f76f1f08eac5c5317221d6ad1e143ae03894b862e8976890" ], "markers": "python_version >= '3.6'", "version": "==6.2.4" }, "python-copasi": { "hashes": [ "sha256:01ec116d5a9620091a7febadb83e76d64a73d5cf65ba4606cc4d609e5b2b15cc", "sha256:06b9683861809f8f5c35864d75b01184d8a425bb8f40dc5b094777d779c216bc", "sha256:0d6b2b622566d77aac72d951542530c1fcadba6efefe7815fee38d049b7e1481", "sha256:1388fd258780361a5b5e50b819d0fd9d1cabf93e12940d44f61e8f1c0a866521", "sha256:2a191186d5af760c85cfde7b972f3e094c2f7730431a3e782ecb73d29c54604e", "sha256:2bad5184eb1cae60255407136fb1614601d47141d03659cfd2ba8a22300c9748", "sha256:3ff0799c81a67665420458e3c91d53a28071089c0954f060ed70ed0b75591ada", "sha256:4769c151d99ca8b4a52cfabee5165fffecb310281a110aad64f96ff7e27e7663", "sha256:53debe88f96553c0f2cbcb432dff55da327b2c7bf3553cbd69a36d6c7ca668a4", "sha256:565aee6f19d7c3937f3175eb5546b2410efbb98228a68b80ed48dc2b422c8d8a", "sha256:6346e63a8fe17c4714704a092319216f4b9e27ecffc380cf0a4a3b299c2cc04e", "sha256:66ddd0f221c879c9efa20085fe21cc8a974ad88a8e75ca1a79127622b303dd3a", "sha256:6bf72e9c98d10db1f68aca0cc84a978d7f64c30366ebfc4a3b72251c133fb0b0", "sha256:74f92ede1e9e2b40231fcb53eb9634631863c5a07c9c84d6c89fb3a1997fb880", "sha256:7950bf4b8f43c9502d3cab90bfbd18c2a02383c7dde0145d417f2daa67e8fcca", "sha256:8594d236ff5f431ba851af86ea1306e49130cbde706b05677648ae49540375e1", "sha256:867fbfb823273a13cc96bc37a11cff6993b3b28e5f121b79966e28957b5811d0", "sha256:8779969806570b1dc92901dedce937eaf16c8f2e5fe2b753d910f59d834d4f7d", "sha256:8a930c3168856afc0a1668fe13cd074a39dd2d610c8e263557c60402c326d764", "sha256:8c2833c9ea557813fef5d80d6c1772666c14f34d0016a54fc158c2cbe745163c", "sha256:96ad02c3093787b11d576c2e8a50c4d7212644a055162eafe7bd2a9236a83a30", "sha256:9ecbea7d069b55c7697546e4e22751d01c7935e3cd65755c47a61bd99dd4e1a6", "sha256:a640792593f787158028e81ddbfb224d45edf64ea0b2b920fa3ecfb7ed3787c8", "sha256:b08fd775246c639aeaf3f14e648c35e44f5b882dd4c9a624dc06271db8c62b9e", "sha256:bb06f8743161c45682e3b860447f117f59ac5eabba6092be432bd17fa1c4c16f", "sha256:bbc3eeefe39028fe864a83b9b1af38c291321561d8c629ec0cbef2fdc1cd78fe", "sha256:bd367132939397c4ab1a44daab2bd059389c31689c782a85a90c5464366e5682", "sha256:c7bb56b093088fc967318ab3a31a4b0016cd93276f9616657ddbdcd7199d79b4", "sha256:d2fac8b3ba7eb451fb4a129bcf4c4db7a415bfee65e565e469593d30734123ba", "sha256:e19f415e4971e02aebf08d877dda9c9b1cbc91dc3f68329de0a13be54b6771fe" ], "version": "==4.34.251" }, "python-dateutil": { "hashes": [ "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" ], "index": "pypi", "version": "==2.8.2" }, "python-dotenv": { "hashes": [ "sha256:aae25dc1ebe97c420f50b81fb0e5c949659af713f31fdb63c749ca68748f34b1", "sha256:f521bc2ac9a8e03c736f62911605c5d83970021e3fa95b37d769e2bbbe9b6172" ], "index": "pypi", "version": "==0.19.0" }, "python-libcombine": { "hashes": [ "sha256:0003b007b633275465b5fc9257eb5badbef9a78779bfd7e2cd9b32bece6a7606", "sha256:11783c4709b9ca47c38e9b3f09ff1967b5e03bfb633f9544c253e5e3692695f4", "sha256:164e4734199752e0b601af86c0c3279da05e93084d274c377048625145b98e40", "sha256:1b41ef73ee650fb34b35fb802c05d089203f9ddf480b540420e2ec6669c9e771", "sha256:1de32e4a0cbeb1a562f69fde3d86ccbf1aefbd04c53e9abf65dc8e1faa532511", "sha256:3278178c823eda516d371a962cf00ac904f3d0bdb50b74c7c8466006f9c3977f", "sha256:3fbd60859a34b44aa28f374b064c3293f7cd1bb656b6371350d20eae3debc771", "sha256:501830bc644a1e351284296b5692a2e264360d27dd4e6eda7b86b4d3b9e0820a", "sha256:501fd54af80c33e736c864932d48ff9e6192a2ba90e7de992cd2625c63bca448", "sha256:70905e6ba5c8b18fc5a5ef579e75444ce0b2ca50a1f3f0a85bc2b308e961e41b", "sha256:7be72d567e0dc58776014e8a5ca0972e40776b89e7f23aa392bb486091456a37", "sha256:7d3b322c98e243ae53796e019cc02e3b60449326b0dfe91bccdfeff6b285eea9", "sha256:844ef0608f29d4e0a6f09065a827eb5ce527934af066f4920cc684a168f2af1a", "sha256:8b14c7d9323659de3eaa1d2b29b30a5b9296a1a96bd4032619f2d306d1691c23", "sha256:90efe6dfe32c2ba2fd419c8d3fcfc1315ee121becf1c8606a09c6ccdb54f06cd", "sha256:9b7ee1203ae921573d84c8a919fd0504e220c937e1cd54bce972e0ead90538ef", "sha256:a81feac905cb5945f19b6778f930e5ac33a94fa863ae6534025c429d8fcbcf65", "sha256:b066815254122e58d78592df3b8628e08b8f83c5993b09a12ab95cf75a7e0cbc", "sha256:b5a1ac2799c9f61df39e1cfe44359119d1f6201f45099a6d82d95f58a19c7a01", "sha256:b86fabeeafb4cd1402570a629f4e012022c7148f5e6c3660c62dc35ff12c9f0b", "sha256:c06727727c28f4c5964be4f67c7b6ef5b49aacec7a3b0b1972fa15308256a9c0", "sha256:c7ca43f939e2f001fe0340de427f30415c922a940df216a04c4abfb77d5b568f", "sha256:e4ce1eaaf60219ad588a12a226a8ca06536fc80945a620664de43d637c357ede", "sha256:e970380722c1aacd4b1d9b6e8f2988a39082ce0a8b6a6319fe15221426a13a76", "sha256:e9ba582ac49c2ecf3d04167bf65e724ab8fdb2cf71784127fbafc00ddd5078d0", "sha256:f0de521e819a7b6feb016bbc292b650b807463871aa954357e8a67f1cf82d9e7", "sha256:f6d642a8b1a78517e9ddba8570b0442cfe143d9ff68beffb3b797b0108995842", "sha256:f6db1f0c9e172c6e6f7c6e4965dd931ca0540f18fc4fa48e1e13e6ae7d2efbf8", "sha256:fb01aaae7d017ab053806512902a586e563a6d5fb20bd15bc89d1caed6284252" ], "version": "==0.2.13" }, "python-libnuml": { "hashes": [ "sha256:08f922c583391f6103f3d3b2ab1f5bbf3f88bfce93ddfe15fc2053553aa9020b", "sha256:1749f68f5bfb5c29b2aa9027592da1e425127d0d3359bb923ba85490a4573162", "sha256:1d5d072e13d881173889bcc2dd7dcfd9a93fa4ed176715125a0c9a8f75bd0caf", "sha256:20605dd9e27eb4913835dd9158aba45515b38976ea43f352af8e369697b04248", "sha256:237c222015db48b4d16c78629bfd8253f29362e0bbe2494d48b7c1946e7c6490", "sha256:2a7e9378944dce8eca25a8b6c6fd1d25514d7a225fa602573882c0ee6381b009", "sha256:3d720dd9e8df0ee907fde1ddbd44076cc6c606e4d60bf6acd2a1a0448896ef7a", "sha256:3f65f92d666eb1df77abe97950cc8b34eeb373684b9a54049684b079f21b5e24", "sha256:4230d703eabf7738a3e7013cc942aa605361bdeb866a33c279d110a17c1d4c5f", "sha256:479e47e54049d85cceba61be7891c5d994b9e57ef9662145f618e720413c154f", "sha256:4d8b59f995e4189b09f77a53354e00daa0b5fa336d92ea0b4f50a823c8694f0d", "sha256:5aadaece923cce587b4e099d4f17a76d41c9a65472b1e47b42162384ae8ace71", "sha256:5fa2ee0fc398ccba10670a757ccd9a9c2f7650133b4591da44b0df90e1de5838", "sha256:6a659ceb1bfd50c5906540c9ec0d3f151ab972776aad51a9d635ef3fdc697df2", "sha256:6b0e3d811e1b8cc67d030ddf01fc872944db58dc7d79647ae309fcab5fb327a8", "sha256:91382434e747df58f2a2f8f4c4ac3504b0f147e045518bfc412d02739293b639", "sha256:94db4ea6cf7a0e336e2ac5f6f36190ac7cc8d25ec236043f6c716cab41c49cc6", "sha256:977c1634554483aabbaeba8fbd77768c77ffd65cd6ef577c023b8a17a956cbdf", "sha256:a903f20a1c897ebcf45322304347a84129b78dad4deebd506c3e8c7d2335e0f7", "sha256:ab222819e2e8a953619fa882d51c18129e8d03d725cc8a3f381eafdaeb5df97a", "sha256:af05c88ae3bf9f9a7ffc5e03c78df24d5c600de33418c02f97908c728b037146", "sha256:cc86a738be5f8e544cfcf0135dc7447fc072f643c8433f11c0dc9c168edd5e3b", "sha256:dedbb887fdd5fb06ca7f3954c5cb836e8436736e30a98b5df98a90948e5ab37c", "sha256:def2dc61e0a62ba305657ffcd55cfe82ae544969a2ef225e2a948784c379149d", "sha256:e3c61dd30a6cf46b67e4a267d8b0f70a0d098a9f04767a76741808fb70a4fd47", "sha256:e5321ff4493b2de80b3468666158d1dd4496d555c5ac908bc79c2d3bd2541f1e", "sha256:ebee8c918d47429273d5f688771a0faf5a067d56633bf3e2c4d3ee59a9ff4896", "sha256:f09c3e2c63f537789603b6c25ea57a591083068a84bd0d9564157cd9f5467a37", "sha256:f8f252d0000105bc393b34ecc2752e6aefb76d4d3d003db829112b2a58e5b959" ], "version": "==1.1.4" }, "python-libsbml": { "hashes": [ "sha256:16430a2b97845ecb23f744b8aaa25137b9e88b4f33a57f4377294e742aab5069", "sha256:16d4120adf64708506e78bd6ab345d5adf52cded5d34d9bcd9819449ede009fb", "sha256:1956d2acb8c07b87946f640794b848fa947135842ea0d30522c3b5c24cca0bde", "sha256:1f4b29b6c8c8a23dba63305c49a83ba6498bf109a2842350af83bb5322c437de", "sha256:21cd07456878e52a10f48f6eab581a0f5bcb28b0375fff2217bd3d240b76a70b", "sha256:317d8e3c1f8fd2de6953d81ef8b94d3dded51a5582fbcc9beebfe59e9541318d", "sha256:39a0c48ddbaf4bf678929c6dcc4cd0eb5a268cd6d34c2e15a915379756f34b83", "sha256:55174ce54c442c0ea8211d5496001c6ab496b6f70bc152448ae1513177faf89f", "sha256:5590e1509166716f2c4754b53e18b8efb5c2d21f23b726704132741c348ed289", "sha256:57ddd43dc3d7ecfbbf6a6cb1aff58c13d7d4171060ec90b920d563ab16f467ca", "sha256:5fd77f09f3dc5c06b3064177eb6ddb9cfcfbb29f71adb61d10036747e7c70874", "sha256:669b9deb92210fb02b0ffd62d789df3ba51a0c3136a4c985fc73d69561857fb6", "sha256:6f77291de3e3ff25cab16b6806f2acf2e7afb69cb2fd674fd0942bb6bb5dd156", "sha256:70330cfae71b79f35f9dc203bb7a589d549456b06b86abca9958606b39738f24", "sha256:738ce267b36a35d7c442510f8f4dab43293a17176b1de56df9c33c247b54b481", "sha256:7fd829736a57799837d67af67ed8f133358b5248c2936ad1d719aea74c840669", "sha256:87596017aa76c1284e83247593fe999ab7ba9a84e7488bcf0434b01277858f86", "sha256:910c8769498dcb8f0e5a9f194e73852934acb1a6ceea1390edc367739ed32cac", "sha256:a5f7ca82738375241bca4fe881402b3ec5235ed153a2c919e5662a47455fb01f", "sha256:ad18353b7900ed8238041c79ffcb002f18fff4208a14353171a90b795db4392c", "sha256:b5f3b71a49a9c17ff3f823c95e76dfe0591b4a34bc5843242752fe828af3653d", "sha256:bf9b10c032324c625d5236f30ca1b37b51a4cbee6c2ffe46cc93c7c6d079a873", "sha256:cd3afeda3111a7afcfdc620e161823fc06af8aa1365d284518dbda29fc02552a", "sha256:d8d315b24c4172bfb2e0353db262765d8f211b5f04848abb19b5f34133796670", "sha256:dc3fc02d9349172c3488b30e88bc2745d886c5e5497e8940a9b8e2d2da566ff9", "sha256:df981b2159d14d6bf38413c09dc60b50f447af85f0393197cf419eaee1ed8110", "sha256:e2428872ba5815bc59923f589c23d53258d60452b726773c7d5472d100b8f5ef", "sha256:eabc3b1f7499e29e13934b5f7fb88c0befa529f4b71559a196523502ecb8b9d5", "sha256:fbd4bbce622182e959b81ef2585dc82df05ced85ba88c0832a3a5adce37d47d9", "sha256:fec3e73f107e410cd2bbe1dd600747bf280df28513234cd6c280f855f78fe2d4" ], "version": "==5.19.0" }, "python-libsedml": { "hashes": [ "sha256:023d020a5795a6c7c59995704f7ce653784d287b234c6554899151cdda3a9c6a", "sha256:0c0fe2b5fe023d7daf6fb5a54ae424088651ae9b83c16c6c52556155998adf21", "sha256:0dfea9e47afc56f422363a8d9e646b5302a38bbcde2aeae3fc519105cf253470", "sha256:12ca949c99f7756dcaa11d4c11012325ee98b68897be14852325f5b13ca99ba0", "sha256:18bc47b922fc3cb0e0d4a64662d97029df926ed2a6c719435bb7b51850ae774b", "sha256:19ebc81c4d2a00fe059ce4c5d9dacec018216b3a0393fe8cfe9eff4e6fa61ad2", "sha256:1d86af851ce1bf3e70d5c5a50a09b0bc527e5295674ddab252e243fc8a8fcbb6", "sha256:288af8713516335e9a74fefb339210075932c5c7efabe9b3b76d7ca94543efa1", "sha256:3652e747b6afbf978b1b3dba299d698814533b5d77c88e950fbbd6fb7a078e7a", "sha256:36d7a45a631450745f58e514cc1cb9ab566feedeac852076834a6270f4170286", "sha256:4611e9b9413ad967fb3c407870cd100e42b64fa0cd664dc76b7a8b1498373e9d", "sha256:4d5e307da370360594e174401b231c6b3275a06f364e1d0e8aeb57ce75c76e3a", "sha256:4edceee61fefa91d9098f159e1f96a59f05d349834122846eace0e3bde9c83f0", "sha256:5693aadb10aa5905f0b832af4b8a367febacb07423686c2d1336309fc1beb9e3", "sha256:5c4c5de253c12207e3f5b997d4a9dbd75c73ae117c5046035bd3fc01a999b56f", "sha256:5e20ebd71eb824ecca83562d17d5405732873373c7769ead65220a8f4df306d5", "sha256:63fa7613825f783e7d3658a59955fbc952695bc20477005ff0601bc3da04404b", "sha256:7d28b83ca41374c3c5e7d19cc74d052a45dcbf1c5b962fe700fee69a8fe8c672", "sha256:7d9caed7ae66d587a92da5ef320199feffee48674561708109b5a502c7066c13", "sha256:7dd6539007d17b15e7a1196583eb4023df3f2e9bd47109cfb311be212c3ab9cd", "sha256:9091f3a22e26e8aee96ebfad912eb462c1555433f894dc4e34ba80fe6aa427ce", "sha256:93746af850ae5231863ac3b17bd7b459c98b179c86e0221cbe83cafad77e02f9", "sha256:a8393e1a324e19efa0bed344f9445e6ec201d4a802abae7344d26989f989f2e9", "sha256:af977eb51c8599f4c84a0b6ed1810abbdefc1437e9b843e324e103308a34a1b6", "sha256:b4913835b1d8e8d15cd7e0a35570738a74feac1aed3d4e098b2cc302fc565deb", "sha256:bdde73bfaba33c93cf09c807fb99a4b9900eea35421dceff056ccad96b393744", "sha256:d73b8f4e984b42b5370ac94d891e17f484a5130f879644ab0b0fe3a4bc6137fe", "sha256:d777d2288bb77f641150b83ab2e712ade3f92335d71a3b7613079c97a5d56a15", "sha256:d8c63be7657f19a907045ac8d95e20b03b9bab403774752fb8c0d3239208abf7", "sha256:ea6013f320345a730aa58eee598a6ce6b07fd2d9aeb7f276102a3f4580afabfa", "sha256:ee9be28e713f32e8ec4c2b3fe567ca7378de7b2cd0ccfda7efe36dc65e5e3200" ], "version": "==2.0.25" }, "pytz": { "hashes": [ "sha256:83a4a90894bf38e243cf052c8b58f381bfe9a7a483f6a9cab140bc7f702ac4da", "sha256:eb10ce3e7736052ed3623d49975ce333bcd712c7bb19a58b9e2089d4057d0798" ], "version": "==2021.1" }, "pyyaml": { "hashes": [ "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf", "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696", "sha256:129def1b7c1bf22faffd67b8f3724645203b79d8f4cc81f674654d9902cb4393", "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77", "sha256:3b2b1824fe7112845700f815ff6a489360226a5609b96ec2190a45e62a9fc922", "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5", "sha256:4465124ef1b18d9ace298060f4eccc64b0850899ac4ac53294547536533800c8", "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10", "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc", "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018", "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e", "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253", "sha256:72a01f726a9c7851ca9bfad6fd09ca4e090a023c00945ea05ba1638c09dc3347", "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183", "sha256:895f61ef02e8fed38159bb70f7e100e00f471eae2bc838cd0f4ebb21e28f8541", "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb", "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185", "sha256:bfb51918d4ff3d77c1c856a9699f8492c612cde32fd3bcd344af9be34999bfdc", "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db", "sha256:cb333c16912324fd5f769fff6bc5de372e9e7a202247b48870bc251ed40239aa", "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46", "sha256:d483ad4e639292c90170eb6f7783ad19490e7a8defb3e46f97dfe4bacae89122", "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b", "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63", "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df", "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc", "sha256:fd7f6999a8070df521b6384004ef42833b9bd62cfee11a09bda1079b4b704247", "sha256:fdc842473cd33f45ff6bce46aea678a54e3d21f1b61a7750ce3c498eedfe25d6", "sha256:fe69978f3f768926cfa37b867e3843918e012cf83f680806599ddce33c2c68b0" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", "version": "==5.4.1" }, "pyzmq": { "hashes": [ "sha256:021e22a8c58ab294bd4b96448a2ca4e716e1d76600192ff84c33d71edb1fbd37", "sha256:0471d634c7fe48ff7d3849798da6c16afc71676dd890b5ae08eb1efe735c6fec", "sha256:0d17bac19e934e9f547a8811b7c2a32651a7840f38086b924e2e3dcb2fae5c3a", "sha256:200ac096cee5499964c90687306a7244b79ef891f773ed4cf15019fd1f3df330", "sha256:240b83b3a8175b2f616f80092cbb019fcd5c18598f78ffc6aa0ae9034b300f14", "sha256:246f27b88722cfa729bb04881e94484e40b085720d728c1b05133b3f331b0b7b", "sha256:2534a036b777f957bd6b89b55fb2136775ca2659fb0f1c85036ba78d17d86fd5", "sha256:262f470e7acde18b7217aac78d19d2e29ced91a5afbeb7d98521ebf26461aa7e", "sha256:2dd3896b3c952cf6c8013deda53c1df16bf962f355b5503d23521e0f6403ae3d", "sha256:31c5dfb6df5148789835128768c01bf6402eb753d06f524f12f6786caf96fb44", "sha256:4842a8263cbaba6fce401bbe4e2b125321c401a01714e42624dabc554bfc2629", "sha256:50d007d5702171bc810c1e74498fa2c7bc5b50f9750697f7fd2a3e71a25aad91", "sha256:5933d1f4087de6e52906f72d92e1e4dcc630d371860b92c55d7f7a4b815a664c", "sha256:620b0abb813958cb3ecb5144c177e26cde92fee6f43c4b9de6b329515532bf27", "sha256:631f932fb1fa4b76f31adf976f8056519bc6208a3c24c184581c3dd5be15066e", "sha256:66375a6094af72a6098ed4403b15b4db6bf00013c6febc1baa832e7abda827f4", "sha256:6a5b4566f66d953601d0d47d4071897f550a265bafd52ebcad5ac7aad3838cbb", "sha256:6d18c76676771fd891ca8e0e68da0bbfb88e30129835c0ade748016adb3b6242", "sha256:6e9c030222893afa86881d7485d3e841969760a16004bd23e9a83cca28b42778", "sha256:89200ab6ef9081c72a04ed84c52a50b60dcb0655375aeedb40689bc7c934715e", "sha256:93705cb90baa9d6f75e8448861a1efd3329006f79095ab18846bd1eaa342f7c3", "sha256:a649065413ba4eab92a783a7caa4de8ce14cf46ba8a2a09951426143f1298adb", "sha256:ac4497e4b7d134ee53ce5532d9cc3b640d6e71806a55062984e0c99a2f88f465", "sha256:b2c16d20bd0aef8e57bc9505fdd80ea0d6008020c3740accd96acf1b3d1b5347", "sha256:b3f57bee62e36be5c97712de32237c5589caee0d1154c2ad01a888accfae20bc", "sha256:b4428302c389fffc0c9c07a78cad5376636b9d096f332acfe66b321ae9ff2c63", "sha256:b4a51c7d906dc263a0cc5590761e53e0a68f2c2fefe549cbef21c9ee5d2d98a4", "sha256:b921758f8b5098faa85f341bbdd5e36d5339de5e9032ca2b07d8c8e7bec5069b", "sha256:c1b6619ceb33a8907f1cb82ff8afc8a133e7a5f16df29528e919734718600426", "sha256:c9cb0bd3a3cb7ccad3caa1d7b0d18ba71ed3a4a3610028e506a4084371d4d223", "sha256:d60a407663b7c2af781ab7f49d94a3d379dd148bb69ea8d9dd5bc69adf18097c", "sha256:da7f7f3bb08bcf59a6b60b4e53dd8f08bb00c9e61045319d825a906dbb3c8fb7", "sha256:e66025b64c4724ba683d6d4a4e5ee23de12fe9ae683908f0c7f0f91b4a2fd94e", "sha256:ed67df4eaa99a20d162d76655bda23160abdf8abf82a17f41dfd3962e608dbcc", "sha256:f520e9fee5d7a2e09b051d924f85b977c6b4e224e56c0551c3c241bbeeb0ad8d", "sha256:f5c84c5de9a773bbf8b22c51e28380999ea72e5e85b4db8edf5e69a7a0d4d9f9", "sha256:ff345d48940c834168f81fa1d4724675099f148f1ab6369748c4d712ed71bf7c" ], "markers": "python_version >= '3.6'", "version": "==22.2.1" }, "rdflib": { "hashes": [ "sha256:7ce4d757eb26f4dd43205ec340d8c097f29e5adfe45d6ea20238c731dc679879", "sha256:bb24f0058070d5843503e15b37c597bc3858d328d11acd9476efad3aa62f555d" ], "index": "pypi", "version": "==6.0.0" }, "requests": { "hashes": [ "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24", "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7" ], "index": "pypi", "version": "==2.26.0" }, "requests-cache": { "hashes": [ "sha256:1102daa13a804abe23fad62d694e7dee58d6063a35d94bf6e8c9821e22e5a78b", "sha256:dd9120a4ab7b8128cba9b6b120d8b5560d566a3cd0f828cced3d3fd60a42ec40" ], "index": "pypi", "version": "==0.6.4" }, "rfc3986": { "extras": [ "idna2008" ], "hashes": [ "sha256:270aaf10d87d0d4e095063c65bf3ddbc6ee3d0b226328ce21e036f946e421835", "sha256:a86d6e1f5b1dc238b218b012df0aa79409667bb209e58da56d0b94704e712a97" ], "version": "==1.5.0" }, "rich": { "hashes": [ "sha256:13ac80676e12cf528dc4228dc682c8402f82577c2aa67191e294350fa2c3c4e9", "sha256:517b4e0efd064dd1fe821ca93dd3095d73380ceac1f0a07173d507d9b18f1396" ], "markers": "python_version >= '3.6' and python_version < '4'", "version": "==10.7.0" }, "rpy2": { "hashes": [ "sha256:0dfc1838954e6b3c4778499f83f6f14e444c97669a21a84728af006b5c4077cc", "sha256:44235c2a48d0fd03f7820cee93f595e45b20e3b54cc3cf4569c87ec409b86d6c", "sha256:5d31a5ea43f5a59f6dec30faca87edb01fc9b8affa0beae96a99be923bd7dab3", "sha256:a86bb6a47df7454cbf72a4d98ef1a2a8eb65efbe1082265ba60978d8d421239a" ], "version": "==3.4.5" }, "rrplugins": { "hashes": [ "sha256:5c9380480cd617cc9307837cc73e96718361573e3419373ad789ee4772698ec3", "sha256:a55404fcb0e097ea7ed77fe36d2dc45b4ceb99dd46ac193f5ebcbaa182723e3c", "sha256:cfa80c5561c6e6dd56ab835a1e27464e3b3330f863d292b7c82ce3da65bbc8cb" ], "version": "==2.0.4" }, "ruamel.yaml": { "hashes": [ "sha256:505d0c2d7d0ccc2b68eca0e23fb78a86504c2a7e95ec5f2ccb216557c380e152", "sha256:b5e96c0a6619830a7733099f0599b56556a963c6114ef64d0ddb4673347b426f" ], "markers": "python_version >= '3'", "version": "==0.17.11" }, "ruamel.yaml.clib": { "hashes": [ "sha256:0847201b767447fc33b9c235780d3aa90357d20dd6108b92be544427bea197dd", "sha256:1866cf2c284a03b9524a5cc00daca56d80057c5ce3cdc86a52020f4c720856f0", "sha256:31ea73e564a7b5fbbe8188ab8b334393e06d997914a4e184975348f204790277", "sha256:3fb9575a5acd13031c57a62cc7823e5d2ff8bc3835ba4d94b921b4e6ee664104", "sha256:4ff604ce439abb20794f05613c374759ce10e3595d1867764dd1ae675b85acbd", "sha256:72a2b8b2ff0a627496aad76f37a652bcef400fd861721744201ef1b45199ab78", "sha256:78988ed190206672da0f5d50c61afef8f67daa718d614377dcd5e3ed85ab4a99", "sha256:7b2927e92feb51d830f531de4ccb11b320255ee95e791022555971c466af4527", "sha256:7f7ecb53ae6848f959db6ae93bdff1740e651809780822270eab111500842a84", "sha256:825d5fccef6da42f3c8eccd4281af399f21c02b32d98e113dbc631ea6a6ecbc7", "sha256:846fc8336443106fe23f9b6d6b8c14a53d38cef9a375149d61f99d78782ea468", "sha256:89221ec6d6026f8ae859c09b9718799fea22c0e8da8b766b0b2c9a9ba2db326b", "sha256:9efef4aab5353387b07f6b22ace0867032b900d8e91674b5d8ea9150db5cae94", "sha256:a32f8d81ea0c6173ab1b3da956869114cae53ba1e9f72374032e33ba3118c233", "sha256:a49e0161897901d1ac9c4a79984b8410f450565bbad64dbfcbf76152743a0cdb", "sha256:ada3f400d9923a190ea8b59c8f60680c4ef8a4b0dfae134d2f2ff68429adfab5", "sha256:bf75d28fa071645c529b5474a550a44686821decebdd00e21127ef1fd566eabe", "sha256:cfdb9389d888c5b74af297e51ce357b800dd844898af9d4a547ffc143fa56751", "sha256:d67f273097c368265a7b81e152e07fb90ed395df6e552b9fa858c6d2c9f42502", "sha256:dc6a613d6c74eef5a14a214d433d06291526145431c3b964f5e16529b1842bed", "sha256:de9c6b8a1ba52919ae919f3ae96abb72b994dd0350226e28f3686cb4f142165c" ], "markers": "python_version < '3.10' and platform_python_implementation == 'CPython'", "version": "==0.2.6" }, "s3transfer": { "hashes": [ "sha256:50ed823e1dc5868ad40c8dc92072f757aa0e653a192845c94a3b676f4a62da4c", "sha256:9c1dc369814391a6bda20ebbf4b70a0f34630592c9aa520856bf384916af2803" ], "markers": "python_version >= '3.6'", "version": "==0.5.0" }, "sbml2matlab": { "hashes": [ "sha256:0d667de6b45b5390d6b42ca9dbf2132c0322718331f96166c0fd555283e54c73", "sha256:28ee6975f7e1486b768f7384c0e3869eeb09ab9f1bcbb91c89dcfc525ecc7429", "sha256:925e8217fd0dc08af64d23c6abacc1970b57698f5425fc64fd4ed66596589fcb", "sha256:a6620b543dd322a1a7538a807149ccf16b0222a257c26b96f8fa7ea6dc0201a6", "sha256:b17f1bc762393b5d2e920363f808ac45d97952d2abfe1d2376f1188bd1bdc74a", "sha256:f0293073fe5f6f566b4c260c1d8115858e9a5b437124b2642dfb9b7c8d7995b1", "sha256:fe55ea5c0568459d1f32a558df2501f1006bb46d0284b26ff24866d1292d580b" ], "version": "==1.2.3" }, "scipy": { "hashes": [ "sha256:2a0eeaab01258e0870c4022a6cd329aef3b7c6c2b606bd7cf7bb2ba9820ae561", "sha256:3304bd5bc32e00954ac4b3f4cc382ca8824719bf348aacbec6347337d6b125fe", "sha256:3f52470e0548cdb74fb8ddf06773ffdcca7c97550f903b1c51312ec19243a7f7", "sha256:4729b41a4cdaf4cd011aeac816b532f990bdf97710cef59149d3e293115cf467", "sha256:4ee952f39a4a4c7ba775a32b664b1f4b74818548b65f765987adc14bb78f5802", "sha256:611f9cb459d0707dd8e4de0c96f86e93f61aac7475fcb225e9ec71fecdc5cebf", "sha256:6b47d5fa7ea651054362561a28b1ccc8da9368a39514c1bbf6c0977a1c376764", "sha256:71cfc96297617eab911e22216e8a8597703202e95636d9406df9af5c2ac99a2b", "sha256:787749110a23502031fb1643c55a2236c99c6b989cca703ea2114d65e21728ef", "sha256:90c07ba5f34f33299a428b0d4fa24c30d2ceba44d63f8385b2b05be460819fcb", "sha256:a496b42dbcd04ea9924f5e92be63af3d8e0f43a274b769bfaca0a297327d54ee", "sha256:bc61e3e5ff92d2f32bb263621d54a9cff5e3f7c420af3d1fa122ce2529de2bd9", "sha256:c9951e3746b68974125e5e3445008a4163dd6d20ae0bbdae22b38cb8951dc11b", "sha256:d1388fbac9dd591ea630da75c455f4cc637a7ca5ecb31a6b6cef430914749cde", "sha256:d13f31457f2216e5705304d9f28e2826edf75487410a57aa99263fa4ffd792c2", "sha256:d648aa85dd5074b1ed83008ae987c3fbb53d68af619fce1dee231f4d8bd40e2f", "sha256:da9c6b336e540def0b7fd65603da8abeb306c5fc9a5f4238665cbbb5ff95cf58", "sha256:e101bceeb9e65a90dadbc5ca31283403a2d4667b9c178db29109750568e8d112", "sha256:efdd3825d54c58df2cc394366ca4b9166cf940a0ebddeb87b6c10053deb625ea" ], "markers": "python_version < '3.10' and python_version >= '3.7'", "version": "==1.7.1" }, "seaborn": { "hashes": [ "sha256:85a6baa9b55f81a0623abddc4a26b334653ff4c6b18c418361de19dbba0ef283", "sha256:cf45e9286d40826864be0e3c066f98536982baf701a7caa386511792d61ff4f6" ], "markers": "python_version >= '3.6'", "version": "==0.11.2" }, "send2trash": { "hashes": [ "sha256:d2c24762fd3759860a0aff155e45871447ea58d2be6bdd39b5c8f966a0c99c2d", "sha256:f20eaadfdb517eaca5ce077640cb261c7d2698385a6a0f072a4a5447fd49fa08" ], "version": "==1.8.0" }, "simplejson": { "hashes": [ "sha256:0040b8d823801120719390696a2c910e10024eccf63e7851748fba02bb1c2b0f", "sha256:007d6c4babace6abe4092cddc2f557cb123e19bdc24c3b6e8319bafc210dae43", "sha256:02db01370c3c60d09184b297b1ac702daece46eb6005e7fae7fab204dad3f8cc", "sha256:09e20701a2319f5af3923ca6a83bd183803719823481692123423697c6c63f98", "sha256:0e44d6f3bf93fcc09a9eefb09ccc7035a811157327c13ae8376a5c89c3540078", "sha256:0f61981554c2bacbe968e70696c65f03c6c1ec2e50d8ecb2af926fcb18a97b7d", "sha256:1ea0682aced01a5bbe9bb040b68ae3271c10fde3132542550b6e04921ef1c41b", "sha256:2397a156bdf2f7e78ebaf2fae0c999cc54b271595e2728c0c2ca89c22f54ba7f", "sha256:2af85e028714c4b6cb2eb6fc03aa91f39ffd654f2eb2f6f8f860e14aeefa6be1", "sha256:2da83b371e5d0023f343fba038d677b60006e24aeddb2ddd80513ad808d96e04", "sha256:2f647e5fe9783e7fe49c6c036102da31dc0db396b4ead6ed785033f2beb982df", "sha256:302959ee24a4cf0ba91609d3c0878e524e4d65550d6c457b903c09a767e86bfe", "sha256:31a51d317695a1c214f5aa1405d7970c91ec92f205ac4ef6997f7fd8946cc70f", "sha256:33bbbaab29b4a15f85b48364fa8bd8a651d4a89d4ceebbc4e0c2ba73f2d07238", "sha256:3a0175f6e0958a602fbff81777a59f7ea5294c3f657f1e467de586bbdfaa4e5d", "sha256:45b9d8f725ac81f434759ec75d54884745f31f29960570ac02664438a8567663", "sha256:530ea1e44065a7bb27135ef49ae581882ab217137b66ec0771e3271fcc0a423e", "sha256:5c572ed94842440192da2ed4bb61015f9e2d295714d0c1925fe565a138f58520", "sha256:60a956a896dd6bfa64057d13b3f837fecf0b554fc4c5daf399aa28ddd47912ab", "sha256:651061490eff527eef5e6d81ee81978a0e3215348d27799f36b39c0012e11606", "sha256:6b84897e40d3938eb089a5601a79248898c6d21777a25dcc6869b1f8614848bf", "sha256:70e74bf39efc0199413b50885fc622b01fd892c5d8161af7dda7381233358135", "sha256:77e1beb769f584a52ef6f5ac414bb50adedfe15ab8149d4e9bfaaa98d149d7b5", "sha256:7b5c5e1004ebc2cf3cf0b9ed2d0b4987e459d2c6d4b4887926b875e72938b7e8", "sha256:7bff90dff74c5ebac682b50f590e3535f1256ed9be8ff38f19a59c40d7998320", "sha256:80dd583a1c6a02fd5d735195a7e04b21f3d9ac51205065a0d9e859a23e859942", "sha256:819a7a369628511e129098d0f99e0a2a6702c0aba395d52ef06332d2463031ab", "sha256:8a60cb29a9dcbb0dffbf3dd460d45b19e8de9bdb2bb26221a762a1ddf310597f", "sha256:92d2f0c92174fc91bc36806e14717e70d8f5e63374d4e7c30d31d0bb510b3b33", "sha256:93a23b0fdeefddb41bd382a59d3cb7b7c4c8b1f14052c821575856e2dc828ccf", "sha256:9b2f7cfe67bc98b9123984520df014e7e9f4ed93b65ee0472af3e1230e967cb4", "sha256:9dff1ffa871c2fc31aebf7dfe942dff20858823dc1bbc59e9797c85bf0b1a5e5", "sha256:9e5f0580b60fda8d2ea930424ef23180599e119bf3b4c7518b0668494bc96e58", "sha256:a6418959866bd14d49444dd5b9e65914d5cc1438dbdc25cdf968bd927849c36e", "sha256:c22beb7c6c89343490ac9ad0c1360c4092f97efb2393c007d8a767b7160c8939", "sha256:c452413cb3c9a39f52156bf21c9020ea7540bab323dafd0db7abeac2c12940f3", "sha256:c4ce22af9c884803498432cbe2da70ec276ead17150fbaad28264e1342330592", "sha256:cca54a1ea98b579b25d39154d353c4d4dbb4622217a49cceec79151005943133", "sha256:d479f2d5cd4e3be25296f151cd912c8712ed8084d1be8ad2f999cba09b8d81df", "sha256:d7132977504a16c63ced62926fdef5a7d6b92addcf912b44b66a8abf3ddccf81", "sha256:da2b9425e12835500eab4e4eb304ea832a4c7baad0546f8eb4a1958515793afb", "sha256:dbe07d4039f55323483cc881cc95e5e2cf589b0daccb69118a048c328e2d7ecd", "sha256:dc65e10aca9e24e975106ebd442059823ceb80babeaccd968290b5a59086bb08", "sha256:e2fb03cd1ec443aaecd13d42970243795df39817b93aadfc484ee0013632eb2d", "sha256:ed967cac20cd84ad811ba5a66021fbb87dd208b5bea94f8871876e1afbd2742a", "sha256:fdaa9e8576c529bdd714df5a1c08c703e6d3bb34660c51a32197a7ca83acb2df" ], "markers": "python_version >= '2.5' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==3.17.4" }, "six": { "hashes": [ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.16.0" }, "smoldyn": { "hashes": [ "sha256:0945f0f933f66d64537be879501e15f05f45f0f8c06c78f33c0475c167738a72", "sha256:6724ae627147f7fd4fb9bfecf1f3ffe8acbc0d2776519c1a7799da4c123e00b9", "sha256:742d03d6aea8af7cc3bc3fe341917f34564f8c238fb31f1f9c8c3d5ec6f3878b", "sha256:7e2643f49034edf944dc5bfc4041565c7fae55e80638d00a33185f161a0fed13", "sha256:d8b887a25752ee822c435ae980f04d33f99c66d5c1076a2ec3962d468b998bb8", "sha256:e143ebb95a013fb80ef944c59d4f47dde7825eff921025c83326189ebf81e075", "sha256:e223af3d2c011d9769516c9449c7968a9dd2ff6e8684f86ba533917791965826", "sha256:f332f1c6975691e6b616d20450d6c3138ab3f36e6511caf000f5e10a9537911c", "sha256:fdb4533031d4bf710fadfbe9aee2da84a3eb7c79008e7829b0ff59e0ac135589" ], "index": "pypi", "version": "==2.67.dev20210819" }, "sniffio": { "hashes": [ "sha256:471b71698eac1c2112a40ce2752bb2f4a4814c22a54a3eed3676bc0f5ca9f663", "sha256:c4666eecec1d3f50960c6bdf61ab7bc350648da6c126e3cf6898d8cd4ddcd3de" ], "markers": "python_version >= '3.5'", "version": "==1.2.0" }, "soupsieve": { "hashes": [ "sha256:052774848f448cf19c7e959adf5566904d525f33a3f8b6ba6f6f8f26ec7de0cc", "sha256:c2c1c2d44f158cdbddab7824a9af8c4f83c76b1e23e049479aa432feb6c4c23b" ], "markers": "python_version >= '3'", "version": "==2.2.1" }, "stringcase": { "hashes": [ "sha256:48a06980661908efe8d9d34eab2b6c13aefa2163b3ced26972902e3bdfd87008" ], "index": "pypi", "version": "==1.2.0" }, "swagger-ui-bundle": { "hashes": [ "sha256:f5255f786cde67a2638111f4a7d04355836743198a83c4ecbe815d9fc384b0c8", "sha256:f5691167f2e9f73ecbe8229a89454ae5ea958f90bb0d4583ed7adaae598c4122" ], "version": "==0.0.8" }, "swiglpk": { "hashes": [ "sha256:052ea8582bb142020082c7a7a54f5dd252ab166f44fc4805688f40d7d3d8bfef", "sha256:0604644860acf42647dbe02f54508b9519acbead5e9dbf5f44a6452db785bfcb", "sha256:0b80f3eb7fcb7cb9671e3718131d56800aae3ab0ccb4c2b60f06b36e43a1b1c6", "sha256:0c6f891c185ba5bac2ad199380d574b8aa1221aa19ba20ded512491188be879c", "sha256:0e6458f580c8b5903a2a9c0afd242ae4dcf8ca4dfdec0ff668cfbce20885017d", "sha256:148d76eecf0bc9a7cc9daa587738c0d9fbe918edaa5863e89363cde9a92d6135", "sha256:1a40dfdc3f0aee2ee20be6206a8e31e26a5da46f5642554d4718d9cfbcc60885", "sha256:22942cae04a0ca04a9ad6eb45b0441f9315d7ebaa835afe00d2dddf849dcd069", "sha256:2504494be2ffa6eaf68ba960edd4fd6d74dba1250bea09a094f2595299297123", "sha256:2ac675c5b1178db9f032b2b0ebba1ba0b69ef7f80e50cf7ea47f4c222d5a1fff", "sha256:2f6d020e753474ce6230ed4670d29dd1a51b0a69df2abbefe7e6751b5159ecca", "sha256:358c03c76aa6566a92ba641db0f56cdb926d90c43f7250f7ca891c03b4a75160", "sha256:37c3dd2106a6293b2daa31a4f1f5be81bf35b0742cf6f6747e59671c5f7877be", "sha256:3e066edfb7ab3abda04ed8cd265baa7b06c9fbb5252ddddf6b3ec10c7e3fea86", "sha256:41f328f03ef468854cbdd8cf58e126a349b7f36031b04eb6c9b43e6ca7e638f7", "sha256:4847bb4de5d4c4ee95c8e234e59bf841227a56bf44bbf50fb3a17b286adbe633", "sha256:696db1146346f97512813e985016ef9af16c2465c5723cd348f50b82de0076db", "sha256:6d99d31428d28b304ab2b63669a03f385a7be6f4753ad3985fa09401a9eb31b2", "sha256:6ed7c39a6d61e889384e0e661949339f264ab11e71ba46df8cd90b5dc5f696ec", "sha256:81ce7c21a0e13ed081831a1429c3c498ae5bfac55709d56ecc4a992366f8fa32", "sha256:8bd0b60384baccd231d21a679ac80e8c879bc62fbe68ab7b6ec1c65d05d94455", "sha256:8e2aac494c016d96f153741d69efeea04faccd97452cf136175fd78b8b7bf6b8", "sha256:9c9ab3b7e3a3f6b3b071a1d0bfd19a4ef135cfaf070be56d94dc2cf62d9b19d5", "sha256:9f7c1de9168f2a84546c89627034a61c1690355abd43da2d7f321d3d90590f5e", "sha256:abfb0cfbd5db9dfeaf71e7319aaf9f86b6231f5bd6c9931d27c14093116fa74e", "sha256:af8285aa77bd313784db92631c8fd7ec30581109c65297a40020c5950ca9ebd2", "sha256:cac7e3793911cbb59ac14c42f48717102bfcc86a72be88762418878478e794f9", "sha256:d13a4a9d96f82b091e062e4149d338895fe51326ddcd537995568af379a125ae", "sha256:d1d05abe0abf8b056dee7c3264498324f998e92a5c399ee5b8ffbbfe73abafca", "sha256:d4274ace7c5d2ee22cf6a66a3bebbe076d154d0b2b01dee0225d9e47dceaee93", "sha256:e891257aabaefbd4617a4033724d0077dfcff6b0dcb81fe2e81d19c0fba25923", "sha256:f4e57a7e551c4cb6671704d7572a5402c339e7144fa2cbf65241efe23122d809", "sha256:fc91e6b0c79f5ad446f9913e543261aa793eb350a28f4c87a106e169e8bfaedb" ], "version": "==5.0.3" }, "sympy": { "hashes": [ "sha256:a3de9261e97535b83bb8607b0da2c7d03126650fafea2b2789657b229c246b2e", "sha256:c986df98babfb9f5ddea49ba7b69398f6d1cfada5ae0dc0431691cddaff851f6" ], "markers": "python_version >= '3.6'", "version": "==1.7.1" }, "tabulate": { "hashes": [ "sha256:d7c013fe7abbc5e491394e10fa845f8f32fe54f8dc60c6622c6cf482d25d47e4", "sha256:eb1d13f25760052e8931f2ef80aaf6045a6cceb47514db8beab24cded16f13a7" ], "version": "==0.8.9" }, "tellurium": { "hashes": [ "sha256:8ccff5b39b586b0a28bf97b173fe5e94244b0fcc4f881d13942cfceb9ff62a00" ], "version": "==2.2.0" }, "tenacity": { "hashes": [ "sha256:43242a20e3e73291a28bcbcacfd6e000b02d3857a9a9fff56b297a27afdc932f", "sha256:f78f4ea81b0fabc06728c11dc2a8c01277bfc5181b321a4770471902e3eb844a" ], "markers": "python_version >= '3.6'", "version": "==8.0.1" }, "termcolor": { "hashes": [ "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b" ], "version": "==1.1.0" }, "terminado": { "hashes": [ "sha256:962b402edbb480718054dc37027bada293972ecadfb587b89f01e2b8660a2132", "sha256:9e0457334863be3e6060c487ad60e0995fa1df54f109c67b24ff49a4f2f34df5" ], "markers": "python_version >= '3.6'", "version": "==0.11.1" }, "testpath": { "hashes": [ "sha256:1acf7a0bcd3004ae8357409fc33751e16d37ccc650921da1094a86581ad1e417", "sha256:8044f9a0bab6567fc644a3593164e872543bb44225b0e24846e2c89237937589" ], "markers": "python_version >= '3.5'", "version": "==0.5.0" }, "toml": { "hashes": [ "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" ], "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==0.10.2" }, "toposort": { "hashes": [ "sha256:2ade83028dd067a1d43c142469cbaf4136b92fdc1c4303f16c40f126442fdaf3", "sha256:a7428f56ef844f5055bb9e9e44b343983773ae6dce0fe5b101e08e27ffbd50ac" ], "version": "==1.6" }, "tornado": { "hashes": [ "sha256:0a00ff4561e2929a2c37ce706cb8233b7907e0cdc22eab98888aca5dd3775feb", "sha256:0d321a39c36e5f2c4ff12b4ed58d41390460f798422c4504e09eb5678e09998c", "sha256:1e8225a1070cd8eec59a996c43229fe8f95689cb16e552d130b9793cb570a288", "sha256:20241b3cb4f425e971cb0a8e4ffc9b0a861530ae3c52f2b0434e6c1b57e9fd95", "sha256:25ad220258349a12ae87ede08a7b04aca51237721f63b1808d39bdb4b2164558", "sha256:33892118b165401f291070100d6d09359ca74addda679b60390b09f8ef325ffe", "sha256:33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791", "sha256:3447475585bae2e77ecb832fc0300c3695516a47d46cefa0528181a34c5b9d3d", "sha256:34ca2dac9e4d7afb0bed4677512e36a52f09caa6fded70b4e3e1c89dbd92c326", "sha256:3e63498f680547ed24d2c71e6497f24bca791aca2fe116dbc2bd0ac7f191691b", "sha256:548430be2740e327b3fe0201abe471f314741efcb0067ec4f2d7dcfb4825f3e4", "sha256:6196a5c39286cc37c024cd78834fb9345e464525d8991c21e908cc046d1cc02c", "sha256:61b32d06ae8a036a6607805e6720ef00a3c98207038444ba7fd3d169cd998910", "sha256:6286efab1ed6e74b7028327365cf7346b1d777d63ab30e21a0f4d5b275fc17d5", "sha256:65d98939f1a2e74b58839f8c4dab3b6b3c1ce84972ae712be02845e65391ac7c", "sha256:66324e4e1beede9ac79e60f88de548da58b1f8ab4b2f1354d8375774f997e6c0", "sha256:6c77c9937962577a6a76917845d06af6ab9197702a42e1346d8ae2e76b5e3675", "sha256:70dec29e8ac485dbf57481baee40781c63e381bebea080991893cd297742b8fd", "sha256:7250a3fa399f08ec9cb3f7b1b987955d17e044f1ade821b32e5f435130250d7f", "sha256:748290bf9112b581c525e6e6d3820621ff020ed95af6f17fedef416b27ed564c", "sha256:7da13da6f985aab7f6f28debab00c67ff9cbacd588e8477034c0652ac141feea", "sha256:8f959b26f2634a091bb42241c3ed8d3cedb506e7c27b8dd5c7b9f745318ddbb6", "sha256:9de9e5188a782be6b1ce866e8a51bc76a0fbaa0e16613823fc38e4fc2556ad05", "sha256:a48900ecea1cbb71b8c71c620dee15b62f85f7c14189bdeee54966fbd9a0c5bd", "sha256:b87936fd2c317b6ee08a5741ea06b9d11a6074ef4cc42e031bc6403f82a32575", "sha256:c77da1263aa361938476f04c4b6c8916001b90b2c2fdd92d8d535e1af48fba5a", "sha256:cb5ec8eead331e3bb4ce8066cf06d2dfef1bfb1b2a73082dfe8a161301b76e37", "sha256:cc0ee35043162abbf717b7df924597ade8e5395e7b66d18270116f8745ceb795", "sha256:d14d30e7f46a0476efb0deb5b61343b1526f73ebb5ed84f23dc794bdb88f9d9f", "sha256:d371e811d6b156d82aa5f9a4e08b58debf97c302a35714f6f45e35139c332e32", "sha256:d3d20ea5782ba63ed13bc2b8c291a053c8d807a8fa927d941bd718468f7b950c", "sha256:d3f7594930c423fd9f5d1a76bee85a2c36fd8b4b16921cae7e965f22575e9c01", "sha256:dcef026f608f678c118779cd6591c8af6e9b4155c44e0d1bc0c87c036fb8c8c4", "sha256:e0791ac58d91ac58f694d8d2957884df8e4e2f6687cdf367ef7eb7497f79eaa2", "sha256:e385b637ac3acaae8022e7e47dfa7b83d3620e432e3ecb9a3f7f58f150e50921", "sha256:e519d64089b0876c7b467274468709dadf11e41d65f63bba207e04217f47c085", "sha256:e7229e60ac41a1202444497ddde70a48d33909e484f96eb0da9baf8dc68541df", "sha256:ed3ad863b1b40cd1d4bd21e7498329ccaece75db5a5bf58cd3c9f130843e7102", "sha256:f0ba29bafd8e7e22920567ce0d232c26d4d47c8b5cf4ed7b562b5db39fa199c5", "sha256:fa2ba70284fa42c2a5ecb35e322e68823288a4251f9ba9cc77be04ae15eada68", "sha256:fba85b6cd9c39be262fcd23865652920832b61583de2a2ca907dbd8e8a8c81e5" ], "markers": "python_version >= '3.5'", "version": "==6.1" }, "tqdm": { "hashes": [ "sha256:07856e19a1fe4d2d9621b539d3f072fa88c9c1ef1f3b7dd4d4953383134c3164", "sha256:35540feeaca9ac40c304e916729e6b78045cbbeccd3e941b2868f09306798ac9" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==4.62.1" }, "traitlets": { "hashes": [ "sha256:178f4ce988f69189f7e523337a3e11d91c786ded9360174a3d9ca83e79bc5396", "sha256:69ff3f9d5351f31a7ad80443c2674b7099df13cc41fc5fa6e2f6d3b0330b0426" ], "markers": "python_version >= '3.7'", "version": "==5.0.5" }, "typing": { "hashes": [ "sha256:1187fb9c82fd670d10aa07bbb6cfcfe4bdda42d6fab8d5134f04e8c4d0b71cc9", "sha256:283d868f5071ab9ad873e5e52268d611e851c870a2ba354193026f2dfb29d8b5" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==3.7.4.3" }, "typing-extensions": { "hashes": [ "sha256:0ac0f89795dd19de6b97debb0c6af1c70987fd80a2d62d1958f7e56fcc31b497", "sha256:50b6f157849174217d0656f99dc82fe932884fb250826c18350e159ec6cdf342", "sha256:779383f6086d90c99ae41cf0ff39aac8a7937a9283ce0a414e5dd782f4c94a84" ], "version": "==3.10.0.0" }, "tzlocal": { "hashes": [ "sha256:005ca82f945478e56562ac765e1aeddc5a15a9dd4cc8df440ea679ae81317e14", "sha256:bfc85aec290895200061352c6904218fcb191a2dcb841b32f94a7ead6dfd2eb6" ], "markers": "python_version >= '3.6'", "version": "==4.0a1" }, "url-normalize": { "hashes": [ "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2", "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", "version": "==1.4.3" }, "urllib3": { "hashes": [ "sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4", "sha256:f57b4c16c62fa2760b7e3d97c35b255512fb6b59a259730f36ba32ce9f8e342f" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'", "version": "==1.26.6" }, "validators": { "hashes": [ "sha256:0143dcca8a386498edaf5780cbd5960da1a4c85e0719f3ee5c9b41249c4fefbd", "sha256:37cd9a9213278538ad09b5b9f9134266e7c226ab1fede1d500e29e0a8fbb9ea6" ], "markers": "python_version >= '3.4'", "version": "==0.18.2" }, "wcwidth": { "hashes": [ "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784", "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83" ], "version": "==0.2.5" }, "webencodings": { "hashes": [ "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923" ], "version": "==0.5.1" }, "werkzeug": { "hashes": [ "sha256:2de2a5db0baeae7b2d2664949077c2ac63fbd16d98da0ff71837f7d1dea3fd43", "sha256:6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==1.0.1" }, "wurlitzer": { "hashes": [ "sha256:01cb41f3bccc339632a28cb147b622241e785c23e11c69ce08efad5ebd2c427f", "sha256:5168ad17ebed2db3c45a07fda05614c4a6f60baac98f2fa373c6ecd55f0240e5" ], "markers": "python_version >= '3.5'", "version": "==3.0.0" }, "xmltodict": { "hashes": [ "sha256:50d8c638ed7ecb88d90561beedbf720c9b4e851a9fa6c47ebd64e99d166d8a21", "sha256:8bbcb45cc982f48b2ca8fe7e7827c5d792f217ecf1792626f808bf41c3b86051" ], "version": "==0.12.0" }, "yamldown": { "hashes": [ "sha256:6e9723d479739efa9423834fad005b31220b097ad42606dd0c8159e10677f27a", "sha256:936ad7bdbde725d0bd3adb77236aae4eb75388619f31232595f7dd45f7006598", "sha256:ec1056e5ec3c47a7c14f69d343b73256ad12751361f1a833805a8ee722cf883c" ], "version": "==0.1.8" }, "zipp": { "hashes": [ "sha256:957cfda87797e389580cb8b9e3870841ca991e2125350677b2ca83a0e99390a3", "sha256:f5812b1e007e48cff63449a5e9f4e7ebea716b4111f9c4f9a645f91d579bf0c4" ], "markers": "python_version < '3.10'", "version": "==3.5.0" } }, "develop": { "attrs": { "hashes": [ "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1", "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==21.2.0" }, "certifi": { "hashes": [ "sha256:2bbf76fd432960138b3ef6dda3dde0544f27cbf8546c458e60baf371917ba9ee", "sha256:50b1e4f8446b06f41be7dd6338db18e0990601dce795c2b1686458aa7e8fa7d8" ], "version": "==2021.5.30" }, "charset-normalizer": { "hashes": [ "sha256:0c8911edd15d19223366a194a513099a302055a962bca2cec0f54b8b63175d8b", "sha256:f23667ebe1084be45f6ae0538e4a5a865206544097e4e8bbcacf42cd02a348f3" ], "markers": "python_version >= '3'", "version": "==2.0.4" }, "coverage": { "hashes": [ "sha256:16db4173575901db8f3e6cc05e50fe19c7849b0256f6dc2e0979485184053417", "sha256:18183948d5480e2ae30ad67edddf748149c778592b7e4ee649c058d5de2dcbb1", "sha256:22888d3ce1b6fa1125f0be1602d8c634e00e7ec3a87bdb594ad87bde0b00b2b6", "sha256:23c1611471cbfa2ac0e283862a76a333c13e5e7c4d499feb9919a5f52884610e", "sha256:2dcc6d62b69a82759e5dddd788e09dd329124e493e62d92cfd01c0b918d7e511", "sha256:40e30139113b141c238620b700aa5bd5c1b3a7b29ae47398936ff1c9166109d9", "sha256:4528368196a90f11b70fb5668c13d92e88ba795eb4d37aab5855fd0479db417b", "sha256:4cbdc51fc8c00ec6e53b30221d5757034aecf9839761bf97eaec0db7f0ff4955", "sha256:6a585ba4087cc1fb5bfe34d1ecaaee183b854427992be2b42f1722ba8289fa82", "sha256:79c136327e90ee46a2b3094263df94da5212890d6145678741eb805d79714971", "sha256:7beec4df7542cf681356ef243fee3bf948775fc0d125bdcad3508e834229e07d", "sha256:8394626a07e0a1b3695a16a4548d32e7259e00817d4bab1ef8172a1bd82a724e", "sha256:84a1000f622d1df8824cd1ac629aa8392679c5c4de3f0de9e6889373f99ff3a0", "sha256:91cd79f0f2996a4de737de89fdcbcd379a5bfd7b15129378ad1e5fc234e58d33", "sha256:951e8d7bc98bceb61fc4fb426966fae854160301c0f8cd0945c62f2504f68615", "sha256:95d2293d6a60da8952c675050231c02c9f4f1c1b9cf916315173e921d137d683", "sha256:9981294b131023e63061ba88f4498fe27b9b15d908079d1866ee66a63d6e793f", "sha256:a8826f6ecf079cb648534790ba59218a64e12a59bf2cd9ff00199abb39864a79", "sha256:c1630e847ae0a2a366f18ddc3e017b69f80d729e95830579c61b5f9e9b94b91e", "sha256:c6f46d5bbec8fe1ff25215356e819528a90d84b2801703514746b665742f1cd2", "sha256:c8099c7033fb1ca73ac2246c3e52f45dd6a9c3826c59b3b5ad94e5be4e08d99b", "sha256:ceb872b89c6461d4365be5f8fbf14f867be6b5217760980de7e014e54648f8ef", "sha256:d6fbe69d52628b3e8a144265fd134f5da07cf287a00cf529730ae10380d315b2", "sha256:da7de6e4162c69cc03cc56b7d051ae11147ac30872ff57df4ba4cac6d70ce5d9", "sha256:ddb2287f66500ac57b24cce60341074b148977b74cd20eca755f95262928086f", "sha256:e6a4260f0abf90c023b4f838905f645695b31666b76837152e2befad3d1ef5d6", "sha256:e97b387f2744762b9984639b59abd7abb46ea6ae2ea24cb7c07893612328559b", "sha256:ea784c96ca3b94912176d7adc9c4bb7d1988f36a0223a9ac128f4c834775202c", "sha256:f0b250a03891255feb3ae69ac29d05cf9a62f5869bb8bac0e7f4968e7274efac", "sha256:fdaa96733c9cf85491ad406fd78aa16025a1ea468951545b3da7ee133c150c7a" ], "markers": "python_version >= '3.6'", "version": "==6.0b1" }, "dictpath": { "hashes": [ "sha256:225248e3c1e7c375495d5da5c390cbf3490f56ee42c151df733e5b2df6b521b5", "sha256:751cde3b76b176d25f961b90c423a11a4d5ede9bd09ab0d64a85abb738c190d8", "sha256:d5212361d1fb93909cff715f6e0404e17752cf7a48df3e140639e529a027c437" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==0.1.3" }, "idna": { "hashes": [ "sha256:14475042e284991034cb48e06f6851428fb14c4dc953acd9be9a5e95c7b6dd7a", "sha256:467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3" ], "version": "==3.2" }, "iniconfig": { "hashes": [ "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3", "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32" ], "version": "==1.1.1" }, "isodate": { "hashes": [ "sha256:2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8", "sha256:aa4d33c06640f5352aca96e4b81afd8ab3b47337cc12089822d6f322ac772c81" ], "version": "==0.6.0" }, "jsonschema": { "hashes": [ "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163", "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a" ], "version": "==3.2.0" }, "lazy-object-proxy": { "hashes": [ "sha256:17e0967ba374fc24141738c69736da90e94419338fd4c7c7bef01ee26b339653", "sha256:1fee665d2638491f4d6e55bd483e15ef21f6c8c2095f235fef72601021e64f61", "sha256:22ddd618cefe54305df49e4c069fa65715be4ad0e78e8d252a33debf00f6ede2", "sha256:24a5045889cc2729033b3e604d496c2b6f588c754f7a62027ad4437a7ecc4837", "sha256:410283732af311b51b837894fa2f24f2c0039aa7f220135192b38fcc42bd43d3", "sha256:4732c765372bd78a2d6b2150a6e99d00a78ec963375f236979c0626b97ed8e43", "sha256:489000d368377571c6f982fba6497f2aa13c6d1facc40660963da62f5c379726", "sha256:4f60460e9f1eb632584c9685bccea152f4ac2130e299784dbaf9fae9f49891b3", "sha256:5743a5ab42ae40caa8421b320ebf3a998f89c85cdc8376d6b2e00bd12bd1b587", "sha256:85fb7608121fd5621cc4377a8961d0b32ccf84a7285b4f1d21988b2eae2868e8", "sha256:9698110e36e2df951c7c36b6729e96429c9c32b3331989ef19976592c5f3c77a", "sha256:9d397bf41caad3f489e10774667310d73cb9c4258e9aed94b9ec734b34b495fd", "sha256:b579f8acbf2bdd9ea200b1d5dea36abd93cabf56cf626ab9c744a432e15c815f", "sha256:b865b01a2e7f96db0c5d12cfea590f98d8c5ba64ad222300d93ce6ff9138bcad", "sha256:bf34e368e8dd976423396555078def5cfc3039ebc6fc06d1ae2c5a65eebbcde4", "sha256:c6938967f8528b3668622a9ed3b31d145fab161a32f5891ea7b84f6b790be05b", "sha256:d1c2676e3d840852a2de7c7d5d76407c772927addff8d742b9808fe0afccebdf", "sha256:d7124f52f3bd259f510651450e18e0fd081ed82f3c08541dffc7b94b883aa981", "sha256:d900d949b707778696fdf01036f58c9876a0d8bfe116e8d220cfd4b15f14e741", "sha256:ebfd274dcd5133e0afae738e6d9da4323c3eb021b3e13052d8cbd0e457b1256e", "sha256:ed361bb83436f117f9917d282a456f9e5009ea12fd6de8742d1a4752c3017e93", "sha256:f5144c75445ae3ca2057faac03fda5a902eff196702b0a24daf1d6ce0650514b" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", "version": "==1.6.0" }, "more-itertools": { "hashes": [ "sha256:2cf89ec599962f2ddc4d568a05defc40e0a587fbc10d5989713638864c36be4d", "sha256:83f0308e05477c68f56ea3a888172c78ed5d5b3c282addb67508e7ba6c8f813a" ], "markers": "python_version >= '3.5'", "version": "==8.8.0" }, "openapi-core": { "hashes": [ "sha256:05e100cfb25b4c68d2f647b3f204da26630d79df02d5e0aacae2bcc1915a2796", "sha256:3426b5ae551a04f7d7a3a625ca600bff157affb4eb691d36412997f6a9ac6898", "sha256:62ad93c8114ce6025f25b004ff0f3674eea8bc4ae920c726e98921fdbe41b4f3" ], "index": "pypi", "version": "==0.14.2" }, "openapi-schema-validator": { "hashes": [ "sha256:215b516d0942f4e8e2446cf3f7d4ff2ed71d102ebddcc30526d8a3f706ab1df6", "sha256:a4b2712020284cee880b4c55faa513fbc2f8f07f365deda6098f8ab943c9f0df", "sha256:b65d6c2242620bfe76d4c749b61cd9657e4528895a8f4fb6f916085b508ebd24" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==0.1.5" }, "openapi-spec-validator": { "hashes": [ "sha256:0a7da925bad4576f4518f77302c0b1990adb2fbcbe7d63fb4ed0de894cad8bdd", "sha256:3d70e6592754799f7e77a45b98c6a91706bdd309a425169d17d8e92173e198a2", "sha256:ba28b06e63274f2bc6de995a07fb572c657e534425b5baf68d9f7911efe6929f" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==0.3.1" }, "packaging": { "hashes": [ "sha256:7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7", "sha256:c86254f9220d55e31cc94d69bade760f0847da8000def4dfe1c6b872fd14ff14" ], "markers": "python_version >= '3.6'", "version": "==21.0" }, "parameterized": { "hashes": [ "sha256:41bbff37d6186430f77f900d777e5bb6a24928a1c46fb1de692f8b52b8833b5c", "sha256:9cbb0b69a03e8695d68b3399a8a5825200976536fe1cb79db60ed6a4c8c9efe9" ], "index": "pypi", "version": "==0.8.1" }, "parse": { "hashes": [ "sha256:9ff82852bcb65d139813e2a5197627a94966245c897796760a3a2a8eb66f020b" ], "version": "==1.19.0" }, "pluggy": { "hashes": [ "sha256:265a94bf44ca13662f12fcd1b074c14d4b269a712f051b6f644ef7e705d6735f", "sha256:467f0219e89bb5061a8429c6fc5cf055fa3983a0e68e84a1d205046306b37d9e" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.0.0.dev0" }, "py": { "hashes": [ "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3", "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.10.0" }, "pyparsing": { "hashes": [ "sha256:10f1886e70da7b76ca1b4cf9bbd60f708ef037892496d5cb7c77ab2982412b2d", "sha256:e96a96967098a5221a78bf94d72930cd1cfaf0ab88dae2ea6bfc2b8b8ccb1930" ], "markers": "python_version >= '3.5'", "version": "==3.0.0b3" }, "pyrsistent": { "hashes": [ "sha256:097b96f129dd36a8c9e33594e7ebb151b1515eb52cceb08474c10a5479e799f2", "sha256:2aaf19dc8ce517a8653746d98e962ef480ff34b6bc563fc067be6401ffb457c7", "sha256:404e1f1d254d314d55adb8d87f4f465c8693d6f902f67eb6ef5b4526dc58e6ea", "sha256:48578680353f41dca1ca3dc48629fb77dfc745128b56fc01096b2530c13fd426", "sha256:4916c10896721e472ee12c95cdc2891ce5890898d2f9907b1b4ae0f53588b710", "sha256:527be2bfa8dc80f6f8ddd65242ba476a6c4fb4e3aedbf281dfbac1b1ed4165b1", "sha256:58a70d93fb79dc585b21f9d72487b929a6fe58da0754fa4cb9f279bb92369396", "sha256:5e4395bbf841693eaebaa5bb5c8f5cdbb1d139e07c975c682ec4e4f8126e03d2", "sha256:6b5eed00e597b5b5773b4ca30bd48a5774ef1e96f2a45d105db5b4ebb4bca680", "sha256:73ff61b1411e3fb0ba144b8f08d6749749775fe89688093e1efef9839d2dcc35", "sha256:772e94c2c6864f2cd2ffbe58bb3bdefbe2a32afa0acb1a77e472aac831f83427", "sha256:773c781216f8c2900b42a7b638d5b517bb134ae1acbebe4d1e8f1f41ea60eb4b", "sha256:a0c772d791c38bbc77be659af29bb14c38ced151433592e326361610250c605b", "sha256:b29b869cf58412ca5738d23691e96d8aff535e17390128a1a52717c9a109da4f", "sha256:c1a9ff320fa699337e05edcaae79ef8c2880b52720bc031b219e5b5008ebbdef", "sha256:cd3caef37a415fd0dae6148a1b6957a8c5f275a62cca02e18474608cb263640c", "sha256:d5ec194c9c573aafaceebf05fc400656722793dac57f254cd4741f3c27ae57b4", "sha256:da6e5e818d18459fa46fac0a4a4e543507fe1110e808101277c5a2b5bab0cd2d", "sha256:e79d94ca58fcafef6395f6352383fa1a76922268fa02caa2272fff501c2fdc78", "sha256:f3ef98d7b76da5eb19c37fda834d50262ff9167c65658d1d8f974d2e4d90676b", "sha256:f4c8cabb46ff8e5d61f56a037974228e978f26bfefce4f61a4b1ac0ba7a2ab72" ], "markers": "python_version >= '3.6'", "version": "==0.18.0" }, "pytest": { "hashes": [ "sha256:50bcad0a0b9c5a72c8e4e7c9855a3ad496ca6a881a3641b4260605450772c54b", "sha256:91ef2131a9bd6be8f76f1f08eac5c5317221d6ad1e143ae03894b862e8976890" ], "markers": "python_version >= '3.6'", "version": "==6.2.4" }, "pytest-cov": { "hashes": [ "sha256:261bb9e47e65bd099c89c3edf92972865210c36813f80ede5277dceb77a4a62a", "sha256:261ceeb8c227b726249b376b8526b600f38667ee314f910353fa318caa01f4d7" ], "index": "pypi", "version": "==2.12.1" }, "pyyaml": { "hashes": [ "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf", "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696", "sha256:129def1b7c1bf22faffd67b8f3724645203b79d8f4cc81f674654d9902cb4393", "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77", "sha256:3b2b1824fe7112845700f815ff6a489360226a5609b96ec2190a45e62a9fc922", "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5", "sha256:4465124ef1b18d9ace298060f4eccc64b0850899ac4ac53294547536533800c8", "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10", "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc", "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018", "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e", "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253", "sha256:72a01f726a9c7851ca9bfad6fd09ca4e090a023c00945ea05ba1638c09dc3347", "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183", "sha256:895f61ef02e8fed38159bb70f7e100e00f471eae2bc838cd0f4ebb21e28f8541", "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb", "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185", "sha256:bfb51918d4ff3d77c1c856a9699f8492c612cde32fd3bcd344af9be34999bfdc", "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db", "sha256:cb333c16912324fd5f769fff6bc5de372e9e7a202247b48870bc251ed40239aa", "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46", "sha256:d483ad4e639292c90170eb6f7783ad19490e7a8defb3e46f97dfe4bacae89122", "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b", "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63", "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df", "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc", "sha256:fd7f6999a8070df521b6384004ef42833b9bd62cfee11a09bda1079b4b704247", "sha256:fdc842473cd33f45ff6bce46aea678a54e3d21f1b61a7750ce3c498eedfe25d6", "sha256:fe69978f3f768926cfa37b867e3843918e012cf83f680806599ddce33c2c68b0" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", "version": "==5.4.1" }, "requests": { "hashes": [ "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24", "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7" ], "index": "pypi", "version": "==2.26.0" }, "six": { "hashes": [ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.16.0" }, "toml": { "hashes": [ "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" ], "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==0.10.2" }, "urllib3": { "hashes": [ "sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4", "sha256:f57b4c16c62fa2760b7e3d97c35b255512fb6b59a259730f36ba32ce9f8e342f" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'", "version": "==1.26.6" }, "werkzeug": { "hashes": [ "sha256:2de2a5db0baeae7b2d2664949077c2ac63fbd16d98da0ff71837f7d1dea3fd43", "sha256:6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==1.0.1" } } } ```