Skip to content

Commit

Permalink
feat: add Python 3.11 support (amazon-braket#148)
Browse files Browse the repository at this point in the history
* feat: add Python 3.11 support
  • Loading branch information
AbeCoull authored and mudit2812 committed May 8, 2023
1 parent bb77ca3 commit bb72e98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
extras_require={
"test": [
"black",
"docutils<0.16,>=0.10",
"docutils>=0.19",
"flake8",
"isort",
"pre-commit",
Expand All @@ -59,7 +59,7 @@
"sphinx-rtd-theme",
"sphinxcontrib-apidoc",
"tox",
"tensorflow>=2.6.0",
"tensorflow>=2.12.0",
"torch>=1.11",
]
},
Expand All @@ -81,5 +81,6 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)

0 comments on commit bb72e98

Please sign in to comment.