forked from pyodide/pyodide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
40 lines (34 loc) · 918 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool:pytest]
norecursedirs =
build
cpython
emsdk
.artifacts
addopts =
--doctest-modules
--ignore="packages/matplotlib/src"
markers =
skip_refcount_check: Dont run refcount checks
skip_pyproxy_check: Dont run pyproxy allocation checks
driver_timeout: Set script timeout in WebDriver
testpaths =
src
pyodide-build
packages
[bumpversion]
current_version = 0.20.0
commit = True
tag = True
tag_name = {new_version}
[bumpversion:file:src/pyodide.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bumpversion:file:Makefile]
search = iodide.io/v{current_version}
replace = iodide.io/v{new_version}
[bumpversion:file:docs/pypi.md]
search = iodide.io/v{current_version}
replace = iodide.io/v{new_version}
[bumpversion:file:docs/using_pyodide_from_javascript.md]
search = iodide.io/v{current_version}
replace = iodide.io/v{new_version}