-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating version parser because the prior one (distutils.version) is …
…obsolete, violates current python version guides (PEP 440), and undocumented. The new parser is part of setuptools, which is required to install switch (it's an import in setup.py). Changing version number from alpha to dev which seems a better name for this staging branch.
- Loading branch information
1 parent
766e377
commit b5b1a28
Showing
2 changed files
with
10 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# Copyright (c) 2015-2019 The Switch Authors. All rights reserved. | ||
# Licensed under the Apache License, Version 2.0, which is in the LICENSE file. | ||
""" | ||
This file should only include the version. Do not import any packages or | ||
modules here because this file needs to be executed before Switch is | ||
installed and executed in environments that don't have any dependencies | ||
installed. | ||
This file should not contain anything that is not part of a minimal python | ||
distribution because it needs to be executed before Switch (and its | ||
dependencies) are installed. | ||
""" | ||
__version__='2.0.6-alpha' | ||
__version__='2.0.6-dev' |