Skip to content

Commit 849de41

Browse files
authored
Merge pull request #200 from MPoL-dev/pre_release_tests
Pre-release workflow revision
2 parents d28c3ce + 030a988 commit 849de41

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fail-fast: false
3838
max-parallel: 4
3939
matrix:
40-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
40+
python-version: ["3.8", "3.9", "3.10"]
4141
os: [ubuntu-20.04, macOS-latest, windows-latest]
4242
steps:
4343
- uses: actions/checkout@v3

test/geometry_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def test_rotate_points():
2424
print("Observer", X, Y)
2525
print("return", xs_back, ys_back)
2626

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

3030

3131
def test_rotate_coords(coords):

0 commit comments

Comments
 (0)