Skip to content

Commit c2278fa

Browse files
committed
Version 2.2.2-dev
1 parent 7d65de9 commit c2278fa

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# sc8pr
22

3-
An educational programming package for [Python 3.4+](https://www.python.org). Inspired by [Scratch](https://scratch.mit.edu) and [Processing](https://www.processing.org), **sc8pr**’s aim is to make it easy for new and experienced Python programmers to create animations, games, and other graphics-based programs.
3+
An educational programming package for [Python 3](https://www.python.org). Inspired by [Scratch](https://scratch.mit.edu) and [Processing](https://www.processing.org), **sc8pr**’s aim is to make it easy for new and experienced Python programmers to create animations, games, and other graphics-based programs.
44

55
![Screenshot](https://dmaccarthy.github.io/sc8pr/img/soccer.png)
66

@@ -27,8 +27,6 @@ Development version (2.2.x):
2727
pip3 install https://github.com/dmaccarthy/sc8pr/archive/master.zip
2828
```
2929

30-
See the documentation for more [detailed instructions](https://dmaccarthy.github.io/sc8pr/?inst).
31-
32-
# Try It First
30+
Alternatively, you can run **sc8pr** from the source code without installing it. Just unzip the **sc8pr** package into your PYTHONPATH and ensure that **pygame 2** is installed.
3331

34-
**sc8pr** is pure Python 3 code, so you can try it without running the setup. Just unzip the **sc8pr** package into your PYTHONPATH. You will still need **pygame 1.9** or **2.0** installed for current **sc8pr** versions and **pygame 1.9** for older versions.
32+
See the documentation for more [detailed instructions](https://dmaccarthy.github.io/sc8pr/?inst).

sc8pr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# along with "sc8pr". If not, see <http://www.gnu.org/licenses/>.
1717

1818

19-
version = 2, 2, "1-dev"
19+
version = 2, 2, "2-dev"
2020
print("sc8pr {}.{}.{}: https://dmaccarthy.github.io/sc8pr".format(*version))
2121

2222
import sys, struct, zlib, io

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[metadata]
22
name = sc8pr
3-
version = 2.2.1
3+
version = 2.2.dev2
44
author = D.G. MacCarthy
55
author_email = sc8pr.py@gmail.com
66
url = https://dmaccarthy.github.io/sc8pr
77
description = A simple framework for new and experienced Python programmers to create animations, games, robotics simulations, and other graphics-based programs
88
long_description = file: README.md
9+
long_description_content_type = text/markdown
910
keywords = graphics animation sprite gui robotics pygame educational
1011
license = GPLv3
1112
classifiers =
@@ -24,7 +25,7 @@ zip_safe = False
2425
include_package_data = True
2526
packages = find:
2627
install_requires = pygame>=1.9.2,<3
27-
python_requires = >=3.4,<4
28+
python_requires = >=3.7,<4
2829

2930
[options.package_data]
3031
sc8pr = *.data

0 commit comments

Comments
 (0)