Skip to content

Commit

Permalink
Increase minimum Python version to 3.9
Browse files Browse the repository at this point in the history
* Bump Python version to 3.9+
* Bumping minor release
  • Loading branch information
ianmkenney authored May 4, 2023
1 parent bbd3c07 commit d7b8f8b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
matrix:
# os: [macOS-latest, ubuntu-latest, windows-latest]
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]
mdanalysis-version: ["latest", "develop"]

steps:
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: mdakithole2
version: "0.1.0"
version: "0.2.0"

source:
path: .
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ maintainers = [
{name = "Ian Kenney", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"MDAnalysis>=2.0.0",
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
# Customize MANIFEST.in if the general case does not suit your needs
# Comment out this line to prevent the files from being packaged with your software
include_package_data=True,
python_requires=">=3.8", # Python version restrictions
python_requires=">=3.9", # Python version restrictions
# Allows `setup.py test` to work correctly with pytest
setup_requires=[] + pytest_runner,
# Required packages, pulls from pip if needed
Expand Down

0 comments on commit d7b8f8b

Please sign in to comment.