Skip to content

Commit

Permalink
Bump minimum Python version to 3.7 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare authored Jan 4, 2021
1 parent 678ffaa commit 35b621b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Plugins for camacq:

### Requirements

- Python version 3.6+.
- Python version 3.7+.
- camacq >= 0.6.0

## Usage
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
long_description=LONG_DESCR,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=REQUIRES,
entry_points={
"camacq.plugins": [
Expand All @@ -33,7 +33,6 @@
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
envlist = py36, py37, py38, py39, lint
envlist = py37, py38, py39, lint
skip_missing_interpreters = True

[gh-actions]
python =
3.6: py36, lint
3.7: py37
3.7: py37, lint
3.8: py38
3.9: py39

Expand Down

0 comments on commit 35b621b

Please sign in to comment.