Skip to content

Commit 42c843f

Browse files
committed
Prepare for release.
1 parent 53429fe commit 42c843f

File tree

9 files changed

+8
-14
lines changed

9 files changed

+8
-14
lines changed

repo_helper/cli/commands/add.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55
Add metadata.
66
7-
.. versionadded:: $VERSION
7+
.. versionadded:: 2021.2.18
88
"""
99
#
1010
# Copyright © 2020-2021 Dominic Davis-Foster <[email protected]>

repo_helper/configuration/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def parse_yaml(repo_path: PathLike, allow_unknown_keys: bool = False) -> Dict:
250250
251251
:returns: Mapping of configuration keys to values.
252252
253-
.. versionchanged:: $VERSION Added the ``allow_unknown_keys`` argument.
253+
.. versionchanged:: 2021.2.18 Added the ``allow_unknown_keys`` argument.
254254
"""
255255

256256
repo_path = PathPlus(repo_path)

repo_helper/configuration/documentation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ class docs_fail_on_warning(ConfigVar): # noqa
327327
328328
docs_fail_on_warning: True
329329
330-
.. versionadded:: $VERSION
330+
.. versionadded:: 2021.2.18
331331
"""
332332

333333
dtype = bool

repo_helper/configuration/python_versions_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class requires_python(ConfigVar): # noqa
6767
6868
requires_python: 3.6.1
6969
70-
.. versionadded:: $VERSION
70+
.. versionadded:: 2021.2.18
7171
"""
7272

7373
dtype = Union[str, float]

repo_helper/configuration/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class mypy_version(ConfigVar): # noqa
194194
195195
mypy_version: 0.790
196196
197-
.. versionchanged:: $VERSION The default is now ``0.800``
197+
.. versionchanged:: 2021.2.18 The default is now ``0.800``
198198
"""
199199

200200
dtype = Union[str, float]

repo_helper/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def load_settings(self, allow_unknown_keys: bool = False) -> None:
120120
121121
:param allow_unknown_keys: Whether unknown keys should be allowed in the configuration file.
122122
123-
.. versionchanged:: $VERSION
123+
.. versionchanged:: 2021.2.18
124124
125125
* This method is no longer called automatically when instantiating the :class:`~.RepoHelper` class.
126126
* Added the ``allow_unknown_keys`` argument.

repo_helper/files/ci_cd.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -307,10 +307,6 @@ def get_windows_ci_versions(self) -> List[str]:
307307

308308
if not self.templates.globals["pure_python"] and "3.8" in py_versions:
309309
py_versions.remove("3.8") # FIXME: Python 3.8 tests fail on Windows for native wheels.
310-
if "pypy3" in py_versions:
311-
# FIXME: PyPy3 tests fail on Windows.
312-
# https://github.com/domdfcoding/flake8-sphinx-links/runs/1276871725?check_suite_focus=true
313-
py_versions.remove("pypy3")
314310

315311
return py_versions
316312

repo_helper/templates/github_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: False
2020
matrix:
2121
config:{% for version in no_dev_versions(python_versions) %}
22-
- {python-version: "{{ version }}", testenvs: "{{ gh_actions_versions[version] }}", experimental: {{ "alpha" in version or "beta" in version }}}{% endfor %}
22+
- {python-version: "{{ version }}", testenvs: "{{ gh_actions_versions[version] }}", experimental: {{ "alpha" in version or "beta" in version or version == "pypy3.7"}}}{% endfor %}
2323

2424
steps:
2525
- name: Checkout 🛎️

repo_helper/templates/github_ci_rustpython.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ jobs:
1919

2020
- name: Setup RustPython 🦀 🐍
2121
run: |
22-
git clone https://github.com/RustPython/RustPython
23-
cargo install --path ./RustPython
24-
rm -rf ./RustPython
22+
cargo install --git https://github.com/RustPython/RustPython
2523
2624
- name: Install dependencies 🔧
2725
run: |

0 commit comments

Comments
 (0)