Skip to content

Commit

Permalink
Merge pull request #279 from fact-project/remove_reltemp_check
Browse files Browse the repository at this point in the history
Remove reltemp check
  • Loading branch information
maxnoe authored Jan 23, 2020
2 parents 3bc3c13 + fbe7df8 commit 049e4ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='shifthelper',
version='1.6.2',
version='1.7.0',
description='a tool for helping people with a FACT night shift',
url='https://github.com/fact-project/shifthelper',
author='Dominik Neise, Maximilian Noethe, Sebastian Mueller',
Expand All @@ -16,25 +16,23 @@
package_data={
'shifthelper.db_cloner': ['logging.conf'],
},
python_requires='>=3.6.0,<3.7',
python_requires='>=3.6.0',
setup_requires=['pytest-runner'],
tests_require=['pytest>=3.0.0', 'freezegun'],
install_requires=[
'pandas==0.22.0',
'pandas~=0.22.0',
'numpy==1.14.1',
'twilio==5.7.0',
'requests',
'python-dateutil',
'sqlalchemy',
'PyMySQL',
'pytz',
'numexpr',
'smart_fact_crawler @ https://github.com/fact-project/smart_fact_crawler/archive/v0.6.4.tar.gz',
'custos==0.0.7',
'custos[all]==0.1.1',
'retrying',
'wrapt',
'python-json-logger',
'telepot',
'cachetools',
],
entry_points={'console_scripts': [
Expand Down
8 changes: 0 additions & 8 deletions shifthelper/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,6 @@ def main():
],
category=CATEGORY_SHIFTER
),
FactIntervalCheck(
name='RelativeCameraTemperatureCheck',
checklist=[
conditions.is_shift_at_the_moment,
conditions.is_rel_camera_temperature_high,
],
category=CATEGORY_SHIFTER
),
FactIntervalCheck(
name='BiasNotOperatingDuringDataRun',
checklist=[
Expand Down

0 comments on commit 049e4ef

Please sign in to comment.