From 64c98f14c839d15f004a7c151990a0abb08df50a Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Thu, 19 Sep 2024 09:00:16 -0400 Subject: [PATCH] Use Hy 1 --- docs/conf.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 38522253..eebeaac7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ copyright = '%s the authors' % time.strftime('%Y') html_title = f'Hyrule {hyrule.__version__} manual' -hy_version = 'v0.29.0' +hy_version = 'v1.0.0' exclude_patterns = ['_build'] diff --git a/setup.py b/setup.py index 9a5f994e..2d5d3a14 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def run(self): # both setup_requires and install_requires # since we need to compile .hy files during setup requires = [ - 'hy' + 'hy >= 1' ]