From 5c93d110333f3662449463dd8f79ae68e108d665 Mon Sep 17 00:00:00 2001 From: "D. MacCarthy" Date: Sat, 10 Oct 2020 06:50:45 -0600 Subject: [PATCH] Release v.2.2.a0 --- README.md | 1 - sc8pr/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 055bcd4..5f1e1fb 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ sc8pr 2 features include: * a selection of GUI controls * curve plotting * robotics simulator -* LaTeX rendering (using [codecogs.com](http://www.codecogs.com/latex/about.php)) For more information, please see the [documentation](http://dmaccarthy.github.io/sc8pr/). diff --git a/sc8pr/__init__.py b/sc8pr/__init__.py index ec7f3e3..171496a 100644 --- a/sc8pr/__init__.py +++ b/sc8pr/__init__.py @@ -14,9 +14,9 @@ # # You should have received a copy of the GNU General Public License # along with "sc8pr". If not, see . -from pygame.examples.oldalien import Img -version = 2, 2, "dev" + +version = 2, 2, "a0" import sys, os, struct, zlib from math import hypot diff --git a/setup.py b/setup.py index 06dd59b..73a1af3 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = 2, 2, "dev" +version = 2, 2, "a0" ver = "{}.{}.{}".format(*version) archive = "master" if version[-1] == "dev" else "v" + ver with open("README.txt", encoding="utf8") as f: readme = f.read()