-
configure conda to use conda-forge
Add the following to your ${HOME}/.condarc
channel_priority: strict channels:
- conda-forge
| #lines | |
| lines.linewidth : 1.0 | |
| lines.linestyle : - | |
| lines.color : black | |
| #fonts & text | |
| font.family : serif | |
| font.weight : normal | |
| font.size : 12.0 | |
| text.color : black |
| import glob | |
| import sys | |
| import astropy | |
| import astropy.table | |
| import fitsio | |
| IS_PY3 = tuple(sys.version_info)[0:3] >= (3, 0, 0) | |
| def _read_fitsio(fname): |
| #include <stdio.h> | |
| #include <math.h> | |
| #include <complex.h> | |
| #include <gsl/gsl_sf_result.h> | |
| #include <gsl/gsl_sf_gamma.h> | |
| static double complex gamma_fftlog(double complex z) { | |
| /* Lanczos coefficients for g = 7 */ | |
| static double p[] = { |
| { | |
| "cells": [ | |
| { | |
| "cell_type": "code", | |
| "execution_count": 1, | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "import galsim\n", | |
| "import numpy as np\n", |
I hereby claim:
To claim this, I am signing this object:
| import sys | |
| import logging | |
| from contextlib import redirect_stdout, redirect_stderr | |
| import io | |
| from conda_forge_tick.utils import load_graph | |
| from conda_forge_tick.auto_tick import migration_factory | |
| migration = sys.argv[1] |