Skip to content

Commit

Permalink
Resolve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
shinaoka committed Jun 24, 2024
2 parents 73a42d7 + e88160f commit 318ddf4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
runs-on: ${{ matrix .os }}
strategy:
matrix:
os: [ubuntu-latest, windows-2019, macOS-latest]
# https://github.com/s-weigand/setup-conda/issues/432
os: [ubuntu-latest, windows-2019, macos-12]

steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,27 @@ jobs:
- os: ubuntu-latest
numpy-version: auto
python-version: 3.9
- os: ubuntu-latest
numpy-version: 2.0
python-version: 3.11
- os: windows-latest
numpy-version: auto
python-version: 3.9
- os: macos-latest
- os: macos-12
numpy-version: auto
python-version: 3.9
steps:
- uses: actions/checkout@v4

- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install numpy ${{ matrix.numpy-version }}
if: ${{ matrix.numpy-version != 'auto' }}
run: |
pip install numpy==1.16
pip install numpy==${{ matrix.numpy-version }}
- name: Install package with testing dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion pysrc/xprec/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
print(2 * x)
"""
__version__ = "1.4.0"
__version__ = "1.4.1"

import numpy as _np

Expand Down

0 comments on commit 318ddf4

Please sign in to comment.