Skip to content

Commit

Permalink
Remeber 3.7 isn't tested either due to an issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Jul 26, 2024
1 parent a25eeef commit 4a6df3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9']
os: [windows-latest, ubuntu-latest, macos-13, macos-latest]
architecture: ['x86', 'x64']
exclude:
Expand Down Expand Up @@ -53,8 +53,6 @@ jobs:
python-version: 3.13

# These are arm - old versions of Python are not supported
- os: macos-latest
python-version: 3.7
- os: macos-latest
python-version: 3.8
- os: macos-latest
Expand Down Expand Up @@ -109,7 +107,7 @@ jobs:
python -m pip install wheel
pip install -r requirements_test.txt
- name: Add numba
if: ${{ matrix.python-version == '3.7' || matrix.python-version == '3.8' || matrix.python-version == '3.9' || matrix.python-version == '3.10' || matrix.python-version == '3.11' || matrix.python-version == '3.12' }}
if: ${{ matrix.python-version == '3.8' || matrix.python-version == '3.9' || matrix.python-version == '3.10' || matrix.python-version == '3.11' || matrix.python-version == '3.12' }}
run: |
pip install numba
- name: Install thermo
Expand Down
2 changes: 1 addition & 1 deletion tests/test_eos_mix.py
Original file line number Diff line number Diff line change
Expand Up @@ -4858,7 +4858,7 @@ def args(eos, numpy=False):
assert isinstance(eos_np.d2G_dep_dzizjs(eos_np.Z_g), np.ndarray)
assert isinstance(eos.d2G_dep_dzizjs(eos.Z_g), list)

assert_close2d(eos_np.d2P_dninjs_Vt('g'), eos.d2P_dninjs_Vt('g'), rtol=1e-13)
assert_close2d(eos_np.d2P_dninjs_Vt('g'), eos.d2P_dninjs_Vt('g'), rtol=1e-12)
assert isinstance(eos_np.d2P_dninjs_Vt('g'), np.ndarray)
assert isinstance(eos.d2P_dninjs_Vt('g'), list)

Expand Down

0 comments on commit 4a6df3c

Please sign in to comment.