Skip to content

Commit

Permalink
Merge pull request #200 from MPoL-dev/pre_release_tests
Browse files Browse the repository at this point in the history
Pre-release workflow revision
  • Loading branch information
jeffjennings authored Nov 10, 2023
2 parents d28c3ce + 030a988 commit 849de41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-20.04, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions test/geometry_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def test_rotate_points():
print("Observer", X, Y)
print("return", xs_back, ys_back)

assert xs == approx(xs_back, abs=4e-7)
assert ys == approx(ys_back, abs=4e-7)
assert xs == approx(xs_back, abs=1e-6)
assert ys == approx(ys_back, abs=1e-6)


def test_rotate_coords(coords):
Expand Down

0 comments on commit 849de41

Please sign in to comment.