Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions conda-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ numba
bokeh
pygments
jinja2
pyyaml
mistune
pyyaml <6.0
mistune <2.0
progressbar2
4 changes: 2 additions & 2 deletions condarecipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ requirements:
- bokeh
- pygments
- jinja2
- pyyaml
- mistune
- pyyaml >=6.0
- mistune >=2.0

test:
source_files:
Expand Down
2 changes: 1 addition & 1 deletion numba_bench/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self, benchmark_dir, resources):
self.python_file_cache = {}

with open(self.benchmark_config_filename, 'r') as f:
config = yaml.load(f)
config = yaml.safe_load(f)

self._validate_and_normalize_config(config, resources)

Expand Down
2 changes: 1 addition & 1 deletion numba_bench/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import mistune

markdown = mistune.Markdown()
markdown = mistune.create_markdown()

if sys.version_info <= (3, 0):
range = xrange
Expand Down