Skip to content

Commit d29ce1b

Browse files
committed
Address review comments
1 parent c197c0a commit d29ce1b

File tree

3 files changed

+5
-53
lines changed

3 files changed

+5
-53
lines changed

build.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ def _build():
3535
for extension in wheels_dir.rglob("**/*.so"):
3636
shutil.copyfile(extension, Path(__file__).parent.joinpath(extension.name))
3737

38+
shutil.rmtree(wheels_dir)
39+
3840

3941
def build(setup_kwargs):
4042
"""
@@ -44,7 +46,7 @@ def build(setup_kwargs):
4446
_build()
4547
except Exception as e:
4648
print(
47-
" Unable to build C extensions, "
49+
" Unable to build Rust extensions, "
4850
"Pendulum will use the pure python version of the extensions."
4951
)
5052
print(e)

poetry.lock

Lines changed: 2 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ packages = [
1515
{ include = "tests", format = "sdist" },
1616
]
1717
include = [
18-
{ path = "meson.build", format = "sdist" },
1918
{ path = "pendulum/py.typed" },
2019
# Typing stubs
2120
{ path = "*.pyi"},
@@ -60,13 +59,6 @@ babel = "^2.10.3"
6059
cleo = ">=1,<3"
6160
tox = "^3.25.1"
6261

63-
[tool.poetry.group.build]
64-
optional = true
65-
66-
[tool.poetry.group.build.dependencies]
67-
meson = "^0.63.2"
68-
ninja = "^1.10.2.3"
69-
7062
[tool.poetry.group.benchmark.dependencies]
7163
pytest-codspeed = "^1.2.2"
7264

0 commit comments

Comments
 (0)