Skip to content

Commit

Permalink
drop python 3.8 (#134)
Browse files Browse the repository at this point in the history
* drop python 3.8

* trigger GitHub actions

* update tox.ini
  • Loading branch information
jcjaskula-aws committed Jan 11, 2024
1 parent 3c4255f commit 0d6998b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_latest_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
keywords="qiskit braket sdk quantum",
packages=setuptools.find_packages(),
install_requires=install_requires,
python_requires=">=3.8.2",
python_requires=">=3.9",
version=version,
classifiers=[
"Intended Audience :: Developers",
Expand All @@ -39,7 +39,6 @@
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 2.1
envlist = py37, py38, py39, py310, lint, coverage, docs
envlist = py39, py310, py311, lint, coverage, docs
skipsdist = true

[testenv]
Expand Down

0 comments on commit 0d6998b

Please sign in to comment.