Skip to content

Commit 3df1c6c

Browse files
authored
Merge pull request #76 from qutech/feature/remove_python_36_support
Remove Python 3.6 support
2 parents 6455550 + 9469591 commit 3df1c6c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python_version: [3.6, 3.7, 3.8, 3.9]
13+
python_version: [3.7, 3.8, 3.9]
1414
install_extras: ['tests', 'plotting,fancy_progressbar,tests', 'plotting,bloch_sphere_visualization,fancy_progressbar,doc,tests']
1515

1616
steps:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ def extract_version(version_file):
1818
raise RuntimeError("Unable to find version string.")
1919

2020

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

2525
extras_require = {'plotting': ['matplotlib'],

0 commit comments

Comments
 (0)