Skip to content

Commit

Permalink
Merge pull request #203 from jakubplichta/python
Browse files Browse the repository at this point in the history
Remove support for py36 and add support for py311
  • Loading branch information
jakubplichta authored Jun 18, 2023
2 parents 314225b + 2ed1117 commit 01e5b65
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ def run_tests(self):
'Operating System :: OS Independent',
'Programming Language :: Python',
'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.11',
],
'keywords': 'grafana yaml graphite prometheus influxdb',
'cmdclass': {'test': Tox},
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tox]
envlist = pep8, py{36,37,38,39,310}
envlist = pep8, py{37,38,39,310,311}

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311

[coverage:run]
relative_files = True
Expand Down

0 comments on commit 01e5b65

Please sign in to comment.