Skip to content

Commit

Permalink
Merge pull request #76 from qutech/feature/remove_python_36_support
Browse files Browse the repository at this point in the history
Remove Python 3.6 support
  • Loading branch information
thangleiter committed Feb 17, 2022
2 parents 6455550 + 9469591 commit 3df1c6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: [3.6, 3.7, 3.8, 3.9]
python_version: [3.7, 3.8, 3.9]
install_extras: ['tests', 'plotting,fancy_progressbar,tests', 'plotting,bloch_sphere_visualization,fancy_progressbar,doc,tests']

steps:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -18,8 +18,8 @@ def extract_version(version_file):
raise RuntimeError("Unable to find version string.")


if sys.version_info < (3, 6):
sys.stderr.write('ERROR: You need Python 3.6 or later to install this package.\n')
if sys.version_info < (3, 7):
sys.stderr.write('ERROR: You need Python 3.7 or later to install this package.\n')
exit(1)

extras_require = {'plotting': ['matplotlib'],
Expand Down

0 comments on commit 3df1c6c

Please sign in to comment.