Skip to content

Commit

Permalink
testing, drop python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
khoroshevskyi committed Nov 7, 2023
1 parent e00e8d8 commit 39b6e99
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.10"]
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 0 additions & 2 deletions pypiper/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,6 @@ def start_pipeline(self, args=None, multi=False):
self.status = "running"
self.pipestat.set_status(
record_identifier=self._pipestat_manager.cfg["record_identifier"],

status_identifier="running",
)

Expand Down Expand Up @@ -1426,7 +1425,6 @@ def _wait_for_lock(self, lock_file):
# self._set_status_flag(WAIT_FLAG)
self.pipestat.set_status(
record_identifier=self._pipestat_manager.cfg["record_identifier"],

status_identifier="waiting",
)
first_message_flag = True
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ def read_reqs_file(reqs_name):
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
author="Nathan Sheffield, Johanna Klughammer, Andre Rendeiro",
Expand Down

0 comments on commit 39b6e99

Please sign in to comment.