Skip to content

Commit 142691e

Browse files
authored
Merge pull request #570 from enzbang/ramonat-rlimit-for-macos-m2
Complete support for macOS M2
2 parents 8eebcb2 + 113d97f commit 142691e

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33

44
* Nothing
55

6+
# Version 22.3.1 (2023-03-17)
7+
8+
* Add rlimit binary for aarch64-darwin
9+
610
# Version 22.3.0 (2023-03-09)
711

812
* Add support for M1/M2 MacOS (aarch64-darwin platform)

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,14 @@
1212
"stevedore>1.20.0",
1313
]
1414

15-
extras_require = {"config": ["tomlkit", "typeguard"], "test": ["pytest-socket"]}
15+
extras_require = {
16+
"config": [
17+
"tomlkit",
18+
# There are some backward incompatible checks in typeguard 3.x
19+
"typeguard<3.0.0",
20+
],
21+
"test": ["pytest-socket"],
22+
}
1623

1724
for p in ("darwin", "linux", "linux2", "win32"):
1825
platform_string = ":sys_platform=='%s'" % p

src/e3/json.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
"""Utility functions related to json."""
2-
3-
42
from __future__ import annotations
53

64
import json

src/e3/os/data/rlimit-aarch64-darwin

33.6 KB
Binary file not shown.

tests/coverage/base.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ branch = False
33
# we can probably activate it once we have more coverage
44

55
[report]
6-
fail_under = 94
6+
fail_under = 90
77
omit =
88
*mypy.py
99
exclude_lines =

0 commit comments

Comments
 (0)