Skip to content

Commit

Permalink
doc; wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
gplepage committed Dec 5, 2024
1 parent 77cf0d7 commit 738ea10
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# matrix:
# os: [ubuntu-20.04]
matrix:
os: [ubuntu-latest, windows-latest , macos-latest]
os: [ubuntu-latest, windows-latest , macos13, macos-latest]
# see https://github.com/actions/runner-images
steps:
- uses: actions/checkout@v4
Expand All @@ -19,13 +19,13 @@ jobs:
- uses: actions/setup-python@v5

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.19.2
run: python -m pip install cibuildwheel==2.22.0

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
env:
CIBW_SKIP: pp* cp36-* cp37-* cp38-*
CIBW_SKIP: pp* cp36-* cp37-* cp38-* cp39-*
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_ARCHS_WINDOWS: auto64
CIBW_ARCHS_LINUX: auto64
Expand Down
Binary file modified doc/html/.doctrees/environment.pickle
Binary file not shown.
Binary file modified doc/html/.doctrees/gvar_other.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion doc/html/gvar_other.html
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ <h2>Pade Approximants<a class="headerlink" href="#pade-approximants" title="Link
<dl class="py function">
<dt class="sig sig-object py" id="gvar.pade.pade_gvar">
<span class="sig-prename descclassname"><span class="pre">gvar.pade.</span></span><span class="sig-name descname"><span class="pre">pade_gvar</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">f</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">m</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">n</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">rtol</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">'gavg'</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#gvar.pade.pade_gvar" title="Link to this definition"></a></dt>
<dd><p><code class="docutils literal notranslate"><span class="pre">(m,n)</span></code> Pade approximant to <code class="docutils literal notranslate"><span class="pre">sum_i</span> <span class="pre">f[i]</span> <span class="pre">x**i</span></code> for <code class="docutils literal notranslate"><span class="pre">GVar</span></code>s.</p>
<dd><p><code class="docutils literal notranslate"><span class="pre">(m,n)</span></code> Pade approximant to <code class="docutils literal notranslate"><span class="pre">sum_i</span> <span class="pre">f[i]</span> <span class="pre">x**i</span></code> for <code class="docutils literal notranslate"><span class="pre">GVar</span></code>\s.</p>
<p>The <code class="docutils literal notranslate"><span class="pre">(m,n)</span></code> Pade approximant to a series given by
<code class="docutils literal notranslate"><span class="pre">sum_i</span> <span class="pre">f[i]</span> <span class="pre">*</span> <span class="pre">x**i</span></code> is the ratio of polynomials of order <code class="docutils literal notranslate"><span class="pre">m</span></code>
(numerator) and <code class="docutils literal notranslate"><span class="pre">n</span></code> (denominator) whose Taylor expansion agrees
Expand Down

0 comments on commit 738ea10

Please sign in to comment.