$ pip install --ignore-installed \
git+https://github.com/OCA/openupgradelib.git@master
Running from target odoo version root directory with matching OpenUpgrade checked out in OpenUpgrade
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from mpl_toolkits.mplot3d import axes3d | |
| import math | |
| # Ported from Matlab code provided in "The “Other” Fibonacci Spiral and Binet Spirals" - Cye H. Waldman ([email protected]) | |
| # http://old.nationalcurvebank.org//waldman7/WaldmanOtherFibonacciSpiralandBinetSpirals.pdf | |
| def HyperbolicGeneralBinet(n: np.ndarray, a: int, b: int, c: int) -> (np.ndarray, np.ndarray): # (chb, shb) | |
| """ |
| version: 2 | |
| jobs: | |
| build-test: | |
| docker: | |
| - image: circleci/node:10.7.0 | |
| working_directory: ~/repo | |
| steps: | |
| - checkout |