Skip to content

Commit

Permalink
Updating version as part of Pypi release of 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
attzonko committed Mar 19, 2021
1 parent 88fc390 commit 4397f97
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion mmpy_bot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from mmpy_bot.settings import Settings
from mmpy_bot.wrappers import ActionEvent, Message, WebHookEvent

__version__ = "2.0.0.dev1"
__version__ = "2.0.0"

__all__ = [
"__version__",
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
Expand Down
4 changes: 0 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
[bdist_wheel]
universal=1


[flake8]
# Black compatibility.
ignore = E203,E501,W503
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def requires(filename: str):

setup(
name="mmpy_bot",
version="2.0.0.dev1",
version="2.0.0",
author="Alex Tzonkov",
author_email="alex.tzonkov@gmail.com",
license="MIT",
Expand All @@ -21,6 +21,7 @@ def requires(filename: str):
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/attzonko/mmpy_bot",
python_requires=">=3.8",
platforms=["Any"],
packages=find_packages(exclude=excludes),
install_requires=requires("requirements.txt"),
Expand All @@ -35,8 +36,6 @@ def requires(filename: str):
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP",
Expand Down

0 comments on commit 4397f97

Please sign in to comment.