Skip to content

Commit

Permalink
- Removed Python 3.6 from manifest and Sonar properties
Browse files Browse the repository at this point in the history
  • Loading branch information
hostcc committed Nov 30, 2022
1 parent d7804b8 commit 4bf9370
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@
'Topic :: System :: Hardware',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
],

keywords='g90, alarm, protocol',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.6, <4',
python_requires='>=3.7, <4',
install_requires=[],

extras_require={
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sonar.python.version=3.6, 3.7, 3.8, 3.9
sonar.python.version=3.7, 3.8, 3.9, 3.10
sonar.python.coverage.reportPaths=coverage.xml
sonar.python.pylint.reportPaths=pylint.txt
sonar.python.flake8.reportPaths=flake8.txt
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ commands =
pylint --output-format=parseable --output=pylint.txt src/pyg90alarm
# Ensure only traces for in-repository module is processed, not for one
# installed by `tox` (see above for more details)
coverage run --source=src/pyg90alarm --parallel-mode -m unittest -v tests
coverage run --source=src/pyg90alarm --parallel-mode -m unittest -v tests []
commands_post =
# Show the `pylint` report to the standard output, to ease fixing the issues reported
cat pylint.txt
Expand Down

0 comments on commit 4bf9370

Please sign in to comment.