aboutsummaryrefslogtreecommitdiff
path: root/asn1crypto
diff options
context:
space:
mode:
authorwbond <will@wbond.net>2019-09-09 01:53:00 -0400
committerwbond <will@wbond.net>2019-09-13 06:41:24 -0400
commitbba5d621c393b86e6fb0838e631ccea252852189 (patch)
tree1e700c6b17079456926febf5f646911828d685c7 /asn1crypto
parent35d686750d96fddcdef6c44d7514dde71dfb0ca0 (diff)
downloadasn1crypto-bba5d621c393b86e6fb0838e631ccea252852189.tar.gz
Create asn1crypto_tests package, along with supporting tooling
Adds the following tasks: - python run.py build - python run.py version {pep440_version} Tests may now be executed a number of different ways and will automatically ensure the local copy of asn1crypto is used, if run from a Git working copy, or archive of a working copy. Versioning scheme switched from SemVer to PEP 440 since that is what the Python ecosystem tooling supports.
Diffstat (limited to 'asn1crypto')
-rw-r--r--asn1crypto/version.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1crypto/version.py b/asn1crypto/version.py
index 1874cfe..aa36a93 100644
--- a/asn1crypto/version.py
+++ b/asn1crypto/version.py
@@ -2,5 +2,5 @@
from __future__ import unicode_literals, division, absolute_import, print_function
-__version__ = '0.25.0-alpha'
-__version_info__ = (0, 25, 0, 'alpha')
+__version__ = '0.25.0.dev1'
+__version_info__ = (0, 25, 0, 'dev1')