Skip to content

Commit eef7c5f

Browse files
authored
misc: Drop support for Python 3.6 (#205)
1 parent 7e49a7d commit eef7c5f

File tree

5 files changed

+8
-50
lines changed

5 files changed

+8
-50
lines changed

.github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ latest features then install from source.
2020

2121
### Requirements
2222

23-
To use Q-CTRL Open Controls you will need an installation of Python (>=3.6.4, <3.10).
23+
To use Q-CTRL Open Controls you will need an installation of Python (>=3.7, <3.10).
2424
We recommend using the [Anaconda](https://www.anaconda.com/) distribution of
2525
Python. Anaconda includes standard numerical and scientific Python packages
2626
which are optimally compiled for your machine. Follow the [Anaconda

.github/workflows/on-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
strategy:
4040
matrix:
41-
python: [3.6, 3.7, 3.8, 3.9]
41+
python: [3.7, 3.8, 3.9]
4242
steps:
4343
- uses: actions/checkout@v1
4444
- name: Install Python dependencies

poetry.lock

Lines changed: 2 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ classifiers = [
2222
"Intended Audience :: Science/Research",
2323
"Natural Language :: English",
2424
"Operating System :: OS Independent",
25-
"Programming Language :: Python :: 3.6",
2625
"Programming Language :: Python :: 3.7",
2726
"Programming Language :: Python :: 3.8",
27+
"Programming Language :: Python :: 3.9",
2828
"Topic :: Internet :: WWW/HTTP",
2929
"Topic :: Scientific/Engineering :: Physics",
3030
"Topic :: Scientific/Engineering :: Visualization",
@@ -36,7 +36,7 @@ packages = [
3636
]
3737

3838
[tool.poetry.dependencies] # https://poetry.eustace.io/docs/versions
39-
python = ">=3.6.4,<3.10"
39+
python = ">=3.7,<3.10"
4040
numpy = "^1.16"
4141
toml = "^0.10.0"
4242

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
name='qctrl-open-controls',
2727
version='8.4.0',
2828
description='Q-CTRL Python Open Controls',
29-
python_requires='<3.10,>=3.6.4',
29+
python_requires='<3.10,>=3.7',
3030
project_urls={"documentation": "https://docs.q-ctrl.com/open-controls/references/qctrl-open-controls/", "homepage": "https://q-ctrl.com", "repository": "https://github.com/qctrl/python-open-controls"},
3131
author='Q-CTRL',
3232
author_email='support@q-ctrl.com',
3333
license='Apache-2.0',
3434
keywords='q-ctrl qctrl quantum control',
35-
classifiers=['Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Scientific/Engineering :: Physics', 'Topic :: Scientific/Engineering :: Visualization', 'Topic :: Software Development :: Embedded Systems', 'Topic :: System :: Distributed Computing'],
35+
classifiers=['Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Scientific/Engineering :: Physics', 'Topic :: Scientific/Engineering :: Visualization', 'Topic :: Software Development :: Embedded Systems', 'Topic :: System :: Distributed Computing'],
3636
packages=['qctrlopencontrols', 'qctrlopencontrols.driven_controls', 'qctrlopencontrols.dynamic_decoupling_sequences'],
3737
package_dir={"": "."},
3838
package_data={},

0 commit comments

Comments
 (0)