Switch version to '7.10.0.dev0'

This commit is contained in:
Seth Michael Larson
2020-10-07 11:07:14 -05:00
parent 449bba6781
commit f6d2da6740
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -18,9 +18,9 @@
# flake8: noqa
from __future__ import absolute_import
VERSION = (7, 9, 0)
VERSION = (7, 10, 0)
__version__ = VERSION
__versionstr__ = "7.9.0a1"
__versionstr__ = "7.10.0.dev0"
import sys
import logging
+2 -2
View File
@@ -19,9 +19,9 @@
from os.path import join, dirname
from setuptools import setup, find_packages
VERSION = (7, 9, 0)
VERSION = (7, 10, 0)
__version__ = VERSION
__versionstr__ = "7.9.0a1"
__versionstr__ = "7.10.0.dev0"
with open(join(dirname(__file__), "README")) as f:
long_description = f.read().strip()