Skip to content

Commit

Permalink
v0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
28left committed Feb 28, 2023
1 parent 869db20 commit adb634d
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
Binary file added dist/cyllene-0.4.5-py3-none-any.whl
Binary file not shown.
Binary file added dist/cyllene-0.4.5.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "cyllene"
version = "0.4.4"
version = "0.4.5"
description = "IPython package for math problem authoring"
readme = "README.md"
authors = [{ name = "Jan Reimann", email = "jan.reimann@psu.edu" }]
Expand Down
2 changes: 1 addition & 1 deletion src/cyllene.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: cyllene
Version: 0.4.4
Version: 0.4.5
Summary: IPython package for math problem authoring
Author-email: Jan Reimann <jan.reimann@psu.edu>
License: MIT License
Expand Down
2 changes: 1 addition & 1 deletion src/cyllene/__init__.py
@@ -1,4 +1,4 @@
__version__ = "0.4.4"
__version__ = "0.4.5"

from .user.problem_stack import ProbStack
from .magics import problem_magics
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion src/cyllene/widgets/widgets_problem_param.py
Expand Up @@ -68,7 +68,7 @@ def update_problem_area(self):

with self.problem_area:
clear_output()
display(Markdown(self.problem.statement))
display(widgets.HTMLMath(markdown.markdown(self.problem.statement)))

for i in range(self.problem.num_choices):
display(widgets.HTMLMath(
Expand Down

0 comments on commit adb634d

Please sign in to comment.