Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Jan 28, 2024
1 parent a2390af commit 40c3a24
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
from pathlib import Path

import numpy as np
import pytz
import toml
from Cython.Build import build_ext
from Cython.Build import cythonize
Expand Down Expand Up @@ -351,7 +350,7 @@ def build() -> None:
print(f"PYO3_ONLY={PYO3_ONLY}\n")

print("Starting build...")
ts_start = datetime.datetime.now(pytz.utc)
ts_start = datetime.datetime.now(datetime.timezone.utc)
build()
print(f"Build time: {datetime.datetime.now(pytz.utc) - ts_start}")
print(f"Build time: {datetime.datetime.now(datetime.timezone.utc) - ts_start}")
print("\033[32m" + "Build completed" + "\033[0m")

0 comments on commit 40c3a24

Please sign in to comment.