Skip to content

Commit

Permalink
Revert "Updated minor version to reflect last comment; fixed spacing …
Browse files Browse the repository at this point in the history
…issues triggering failed checks"

This reverts commit 51cbf39.
  • Loading branch information
btski committed Nov 3, 2023
1 parent 51cbf39 commit 89a0830
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
5 changes: 0 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
v1.0.2 [2023-11-03]
===================

* Made constellation determination more robust with partial, case-insensitive matching

v1.0.1 [2022-02-16]
===================

Expand Down
2 changes: 1 addition & 1 deletion octofludb/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.2"
__version__ = "1.0.1"
8 changes: 4 additions & 4 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -957,12 +957,12 @@ def test_constellations_mixed(self):
def test_constellations_well_mixed(self):
data = [
# A VPPVPT
("A", "PB2", "LAIV"),
("A", "PB2", "TX98"), # both V
("A", "PB2", "LAIV"),
("A", "PB2", "TX98"), # both V
("A", "PB1", "pdm"),
("A", "PA", "pdm"),
("A", "NP", "LAIV"),
("A", "NP", "TX98"), # both V
("A", "NP", "TX98"), # both V
("A", "M", "pdm"),
("A", "NS", "TRIG"),
("A", "NS", "TRIG"), # duplicates are fine
Expand All @@ -984,7 +984,7 @@ def test_constellations_irregular(self):
]
out = [("A", "PX-P-T")]
self.assertEqual(formatter._make_constellations(data), out)

def test_constellations_flexible(self):
data = [
# A AAAAPX
Expand Down

1 comment on commit 89a0830

@btski
Copy link
Contributor Author

@btski btski commented on 89a0830 Nov 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Manually updating version caused check failures that were difficult to identify/resolve. Chose to revert instead.

Please sign in to comment.