Skip to content

Commit

Permalink
Merge pull request #230 from taskcluster/matt-boris/specifySupportedP…
Browse files Browse the repository at this point in the history
…ythonVersions

refactor!: specify supported python versions
  • Loading branch information
matt-boris authored Jun 27, 2023
2 parents eff2695 + c790514 commit bda56d1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .taskcluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ tasks:
in:
$let:
tests:
- image: 'python:3.6'
name: python:3.6 tests
- image: 'python:3.11'
name: python:3.11 tests
command:
- /bin/bash
- '--login'
Expand All @@ -46,7 +46,7 @@ tasks:
git checkout ${repo.ref} &&
pip install -e . &&
python setup.py test
- image: 'python:3.6'
- image: 'python:3.11'
name: flake
command:
- /bin/bash
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
setup_requires=["pytest-runner", "flake8"],
tests_require=["pytest", "pytest-mock", "pytest-asyncio>=0.18.0,<0.22", "flake8", "asyncmock"],
classifiers=[
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
entry_points={
"console_scripts": [
Expand Down

0 comments on commit bda56d1

Please sign in to comment.