Skip to content

Commit

Permalink
updated a test a but, and incremented version
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisBarker-NOAA committed Jul 17, 2024
1 parent 15792d7 commit bf6a8bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py_gd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import sys
import os

__version__ = "2.3.0"
__version__ = "2.3.1"

if sys.platform.startswith('win'):
# This only works for Anaconda / miniconda
Expand Down
3 changes: 2 additions & 1 deletion py_gd/test/test_open_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ def test_open_file(filename):

results = py_gd.py_gd._read_text_file(path, encoding="utf-8")

assert results == contents
# stripping to clean off newlines
assert results.strip() == contents.strip()

0 comments on commit bf6a8bc

Please sign in to comment.