forked from pyodide/pyodide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
40 lines (34 loc) · 956 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.1a1
commit = True
tag = True
tag_name = {new_version}
[bumpversion:file:src/py/pyodide/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:src/py/setup.cfg]
search = version = {current_version}
replace = version = {new_version}
[bumpversion:file:pyodide-build/setup.cfg]
search = version = {current_version}
replace = version = {new_version}
[bumpversion:file:run_docker]
search = PYODIDE_PREBUILT_IMAGE_TAG="{current_version}"
replace = PYODIDE_PREBUILT_IMAGE_TAG="{new_version}"