Skip to content

Commit

Permalink
feat(ppm): Includes updated PPM architecture functionality\n\nBREAKIN…
Browse files Browse the repository at this point in the history
…G CHANGES: Updated PPM architectrure
  • Loading branch information
b32147 committed Aug 4, 2020
1 parent f270542 commit d2e357f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .releaserc
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"branches": ["master", {name: "beta", prerelease: true}, {name: "alpha", prerelease: true}],
"branches": [
"master",
"+([0-9])?(.{+([0-9]),x}).x",
{name: "beta", prerelease: true},
{name: "alpha", prerelease: true},
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from io import open

from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand


def read(f):
Expand All @@ -19,6 +20,7 @@ def get_version(package):
).read()
return re.search("__version__ = ['\"]([^'\"]+)['\"]", init_py).group(1)


# Inspired by the example at https://pytest.org/latest/goodpractises.html
class NoseTestCommand(TestCommand):
def finalize_options(self):
Expand Down

0 comments on commit d2e357f

Please sign in to comment.