Skip to content

Commit

Permalink
Merge pull request #44 from swimlane/0_8_1_release
Browse files Browse the repository at this point in the history
0.8.1 Release
  • Loading branch information
MSAdministrator authored Feb 15, 2022
2 parents eb612d1 + d8fccbe commit 464a9b7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion atomic_operator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.8.0"
__version__ = "0.8.1"


from .atomic_operator import AtomicOperator
4 changes: 2 additions & 2 deletions atomic_operator/execution/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def execute(self, host_name='localhost', executor=None, host=None):
executor=executor,
host=host,
cwd=self.test_path,
elevation_requred=self.test.executor.elevation_required
elevation_required=self.test.executor.elevation_required
)
return_dict.update({'command': response})
elif Base.CONFIG.check_prereqs or Base.CONFIG.get_prereqs:
Expand All @@ -115,5 +115,5 @@ def start(self):
raise NotImplementedError

@abc.abstractmethod
def execute_process(self, command, executor=None, host=None, cwd=None, elevation_requred=False):
def execute_process(self, command, executor=None, host=None, cwd=None, elevation_required=False):
raise NotImplementedError

0 comments on commit 464a9b7

Please sign in to comment.