Skip to content

Commit 5878ba4

Browse files
committed
Set versioning for the new release
1 parent 27729d3 commit 5878ba4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hyrule/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# We use an `__init__.py` instead of `__init__.hy` so that importing
22
# from Python works even if `hy` hasn't been imported yet.
33

4-
__version__ = 'unreleased'
4+
__version__ = '0.6.0'
55

66
import hy
77
hy.macros.require('hyrule.hy_init',

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ def run(self):
2525
# both setup_requires and install_requires
2626
# since we need to compile .hy files during setup
2727
requires = [
28-
'hy'
28+
'hy >= 0.29.0, < 0.30'
2929
]
3030

3131

3232
setuptools.setup(
3333
name = 'hyrule',
34-
version = '0.0.0',
34+
version = '0.6.0',
3535
setup_requires=['wheel'] + requires,
3636
install_requires=requires,
3737
packages = setuptools.find_packages(exclude = ["tests*"]),

0 commit comments

Comments
 (0)