See #2762. Try again.

This commit is contained in:
Dion Moult
2023-02-16 15:01:10 +11:00
parent 8ee60db0df
commit d9f1d501aa
2 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ on:
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# * * * * *
- cron: "49 23 15 * *" # 11min before utc midnight
- cron: "10 4 16 * *" # 11min before utc midnight
env:
major: 0
+7
View File
@@ -0,0 +1,7 @@
from setuptools import setup
from pathlib import Path
cwd = Path(__file__).parent
long_description = (cwd / "README.md").read_text()
setup(name="ifcopenshell", long_description=long_description, long_description_content_type="text/markdown")