We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27729d3 commit 5878ba4Copy full SHA for 5878ba4
hyrule/__init__.py
@@ -1,7 +1,7 @@
1
# We use an `__init__.py` instead of `__init__.hy` so that importing
2
# from Python works even if `hy` hasn't been imported yet.
3
4
-__version__ = 'unreleased'
+__version__ = '0.6.0'
5
6
import hy
7
hy.macros.require('hyrule.hy_init',
setup.py
@@ -25,13 +25,13 @@ def run(self):
25
# both setup_requires and install_requires
26
# since we need to compile .hy files during setup
27
requires = [
28
- 'hy'
+ 'hy >= 0.29.0, < 0.30'
29
]
30
31
32
setuptools.setup(
33
name = 'hyrule',
34
- version = '0.0.0',
+ version = '0.6.0',
35
setup_requires=['wheel'] + requires,
36
install_requires=requires,
37
packages = setuptools.find_packages(exclude = ["tests*"]),
0 commit comments