MilesCranmer commited on
Commit
a1876b2
·
1 Parent(s): a1bc64b

Fix equation refresh for changing lines

Browse files
Files changed (3) hide show
  1. Project.toml +1 -1
  2. pysr/sr.py +1 -0
  3. setup.py +1 -1
Project.toml CHANGED
@@ -2,5 +2,5 @@
2
  SymbolicRegression = "8254be44-1295-4e6a-a16d-46603ac705cb"
3
 
4
  [compat]
5
- SymbolicRegression = "0.5.4"
6
  julia = "1.5"
 
2
  SymbolicRegression = "8254be44-1295-4e6a-a16d-46603ac705cb"
3
 
4
  [compat]
5
+ SymbolicRegression = "0.5.5"
6
  julia = "1.5"
pysr/sr.py CHANGED
@@ -353,6 +353,7 @@ def _cmd_runner(command, **kwargs):
353
  decoded_line = (line.decode('utf-8')
354
  .replace('\\033[K', '\033[K')
355
  .replace('\\033[1A', '\033[1A')
 
356
  .replace('\\r', '\r'))
357
  print(decoded_line, end='')
358
 
 
353
  decoded_line = (line.decode('utf-8')
354
  .replace('\\033[K', '\033[K')
355
  .replace('\\033[1A', '\033[1A')
356
+ .replace('\\033[1B', '\033[1B')
357
  .replace('\\r', '\r'))
358
  print(decoded_line, end='')
359
 
setup.py CHANGED
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
 
6
  setuptools.setup(
7
  name="pysr", # Replace with your own username
8
- version="0.5.4",
9
  author="Miles Cranmer",
10
  author_email="[email protected]",
11
  description="Simple and efficient symbolic regression",
 
5
 
6
  setuptools.setup(
7
  name="pysr", # Replace with your own username
8
+ version="0.5.5",
9
  author="Miles Cranmer",
10
  author_email="[email protected]",
11
  description="Simple and efficient symbolic regression",