diff --git a/README.md b/README.md index e9c50e3..95b2563 100644 --- a/README.md +++ b/README.md @@ -17,18 +17,11 @@ For more information, please see the [tutorial and reference](https://dmaccarthy # Installation -Latest stable release (2.2): +Latest stable release (3.0): ``` pip3 install sc8pr ``` -Beta release (3.0.b0): Please note that **sc8prx** includes “extras” that have dependencies other than **pygame**. Use **sc8pr** instead of **sc8prx** if you just want the core features with no extra dependencies. -``` -pip3 install sc8prx==3.0b0 -``` - Alternatively, you can download **sc8pr** from GitHub and run it from the source code. Ensure that **pygame 2** is installed! See the documentation for more [detailed instructions](https://dmaccarthy.github.io/sc8pr/?inst). - -You can also preview the forthcoming [sc8pr 3 documentation](https://dmaccarthy.github.io/sc8pr3/) diff --git a/sc8pr/__init__.py b/sc8pr/__init__.py index bb92010..8a85fd7 100644 --- a/sc8pr/__init__.py +++ b/sc8pr/__init__.py @@ -16,7 +16,7 @@ # along with "sc8pr". If not, see . -version = 3, 0, "dev" +version = 3, 0, 0 print("sc8pr {}.{}.{}: https://dmaccarthy.github.io/sc8pr".format(*version)) import sys, struct diff --git a/setup.cfg b/setup.cfg index 25add1a..b5bf875 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = sc8pr -version = 3.0.dev +version = 3.0.0 author = D.G. MacCarthy author_email = sc8pr.py@gmail.com url = https://dmaccarthy.github.io/sc8pr @@ -10,7 +10,7 @@ long_description_content_type = text/markdown keywords = graphics animation sprite gui robotics pygame educational license = GPLv3 classifiers = - Development Status :: 4 - Beta + Development Status :: 5 - Production/Stable Intended Audience :: Developers Intended Audience :: Education License :: OSI Approved :: GNU General Public License v3 (GPLv3)