Skip to content

Commit

Permalink
1.6.4.1
Browse files Browse the repository at this point in the history
Release 1.6.4.1
  • Loading branch information
JustRedTTG committed Dec 18, 2020
1 parent f2789c5 commit 262e2ba
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Metadata-Version: 2.1
Name: pygameextra
Version: 1.6.4
Version: 1.6.4.1
Summary: pygame extra is a mask for pygame, you can easily make complex games and or apps with much less lines then you would of before, Pygame Extra makes coding easier
License: BSD-3-Clause
Author: RedstoneHair
Requires-Python: >=3.5,<4.0
Requires-Python: >=3.5
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: pygame (>=1.9.6,<2.0.0)
Requires-Dist: pygame (>=1.9.6)
Binary file modified pygameextra/dist/pygameextra_pong-0.0.0-py3.8.egg
Binary file not shown.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tool.poetry]
name = "PygameExtra"
version = "1.6.4"
version = "1.6.4.1"
description = "pygame extra is a mask for pygame, you can easily make complex games and or apps with much less lines then you would of before, Pygame Extra makes coding easier"
authors = ["RedstoneHair"]
license = "BSD-3-Clause"
packages = [
{ include = "pygameextra" },
]
[tool.poetry.dependencies]
python = "^3.5"
pygame = "^1.9.6"
python = ">=3.5"
pygame = ">=1.9.6"
[tool.poetry.dev-dependencies]

[build-system]
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
'pygameextra_pong.egg-info/*']}

install_requires = \
['pygame>=1.9.6,<2.0.0']
['pygame>=1.9.6']

setup_kwargs = {
'name': 'pygameextra',
'version': '1.6.4',
'version': '1.6.4.1',
'description': 'pygame extra is a mask for pygame, you can easily make complex games and or apps with much less lines then you would of before, Pygame Extra makes coding easier',
'long_description': None,
'author': 'RedstoneHair',
Expand All @@ -28,7 +28,7 @@
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'python_requires': '>=3.5,<4.0',
'python_requires': '>=3.5',
}


Expand Down

0 comments on commit 262e2ba

Please sign in to comment.