Skip to content

Commit 945ea0d

Browse files
committed
deprecate 3.9 python
1 parent ce90610 commit 945ea0d

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Install conda deps
3333
run: |
34-
conda install -y -q --file extra_requirements.txt nbconvert sphinx=6.1.3 python=3.9
34+
conda install -y -q --file extra_requirements.txt nbconvert sphinx=6.1.3 python=3.10
3535
pip install pydata-sphinx-theme==0.13.1 sphinx-argparse sphinx-notfound-page sphinx-sitemap sphinx-autodoc-typehints
3636
pip install .
3737
# pdb2pqr is downgrading docutils for some reason and causes failures

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: ["ubuntu-latest", "macos-latest", "windows-2022"]
15-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1616

1717
defaults: # Needed for conda
1818
run:

package/moleculekit/variants.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
python:
2-
- 3.9
32
- 3.10
43
- 3.11
54
- 3.12

package/moleculekit/windows_variants.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ c_stdlib:
55
cxx_compiler:
66
- vs2019
77
python:
8-
- 3.9
98
- 3.10
109
- 3.11
1110
- 3.12

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,12 @@ requires = [
5050
build-backend = "setuptools.build_meta"
5151

5252
[dependency-groups]
53-
dev = ["ipython>=8.18.1", "pytest>=8.4.2"]
53+
dev = [
54+
"ipython>=8.18.1",
55+
"pymol-open-source>=3.2.0a0",
56+
"pyqt5>=5.15.11",
57+
"pytest>=8.4.2",
58+
]
5459

5560
[tool.pytest.ini_options]
5661
python_functions = "_test*"

0 commit comments

Comments
 (0)