Skip to content

Commit

Permalink
version bump: 9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eemeli committed Mar 20, 2023
1 parent f3e225b commit e8c2ee1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion compare_locales/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "8.2.1"
version = "9.0.0"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

import sys
import os
sys.path.insert(0, os.path.dirname(__file__))

from compare_locales import version

sys.path.insert(0, os.path.dirname(__file__))
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), 'rb') as f:
long_description = f.read().decode('utf-8')
Expand Down Expand Up @@ -43,7 +43,7 @@
'moz-l10n-lint = compare_locales.lint.cli:main',
],
},
packages=find_packages(),
packages=find_packages(exclude=['*.tests', '*.tests.*']),
package_data={
'compare_locales.tests': ['data/*.properties', 'data/*.dtd']
},
Expand Down

0 comments on commit e8c2ee1

Please sign in to comment.