Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
happyleavesaoc committed May 9, 2023
1 parent f63acd0 commit 031e798
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mgz/reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
def get_dataset(version, mod):
"""Fetch dataset reference data."""
if version is Version.DE:
if 11 in mod:
if isinstance(mod, list) and 11 in mod:
dataset_id = 101
else:
dataset_id = 100
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

setup(
name='mgz',
version='1.8.16',
version='1.8.17',
description='Parse Age of Empires 2 recorded games.',
url='https://github.com/happyleavesaoc/aoc-mgz/',
license='MIT',
author='happyleaves',
author_email='happyleaves.tfr@gmail.com',
packages=find_packages(),
install_requires=[
'aocref>=2.0.10',
'aocref>=2.0.11',
'construct==2.8.16',
'dataclasses==0.8; python_version < "3.7"',
'tabulate>=0.9.0',
Expand Down

0 comments on commit 031e798

Please sign in to comment.