Skip to content

Commit

Permalink
setup.py: Python 3.8 -> pygame==2.0.0.dev6
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored and lordmauve committed Jun 19, 2020
1 parent fdcd5e2 commit eb3049f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
LONG_DESCRIPTION = f.read()

install_requires = [
'pygame>=1.9.2, <2.0',
"pygame>=1.9.2, <2.0 ; python_version<'3.8'",
"pygame==2.0.0.dev6 ; python_version>='3.8'",
'numpy',
]

extras_require = {
':python_version < "3.4"': ["enum34"],
'repl': ["ptpython==0.41"],
}

Expand Down

0 comments on commit eb3049f

Please sign in to comment.