Skip to content

Commit 0fe607a

Browse files
committed
refactor: prepare python version update
1 parent 8158ebc commit 0fe607a

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

README.md

-7
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,6 @@ For more details, read the [Documentation](#Documentation) and the articles in t
5353
</p>
5454
</details>
5555

56-
<details>
57-
<summary>Projects listing page.</summary>
58-
<p align="center">
59-
<img src="docs/figures/interactive-clustering-gui-projects-list.png" alt="Projects listing page." style="width:75%;">
60-
</p>
61-
</details>
62-
6356
<details>
6457
<summary>Project home page.</summary>
6558
<p align="center">

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,9 @@ classifiers = [
3030
"Programming Language :: Python :: 3 :: Only",
3131
"Programming Language :: Python :: 3.8",
3232
"Programming Language :: Python :: 3.9",
33-
#### "Programming Language :: Python :: 3.10", # TODO: numpy==1.21.1 & scipy==1.6.1 & spacy not compatible...
34-
#### "Programming Language :: Python :: 3.11", # TODO: numpy==1.21.1 & scipy==1.6.1 & spacy not compatible...
33+
#### "Programming Language :: Python :: 3.10", # TODO:
34+
#### "Programming Language :: Python :: 3.11", # TODO:
3535
#### "Programming Language :: Python :: 3.12", # TODO:
36-
#### "Programming Language :: Python :: 3.13", # TODO:
3736
"Topic :: Documentation",
3837
"Topic :: Software Development",
3938
"Topic :: Software Development :: Documentation",
@@ -138,6 +137,7 @@ docs = [
138137
"mkdocs-jupyter>=0.24.3", # TODO: fix error with "nbconvert==5.6.1", and some jupyter template location errors...
139138
"mkdocs-literate-nav>=0.4",
140139
"mkdocs-material>=7.3",
140+
"mkdocs-plotly-plugin>=0.1.3",
141141
"mkdocs-section-index>=0.3",
142142
"mkdocstrings[python]>=0.19",
143143
"markdown-callouts>=0.2",

scripts/multirun.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
# un/comment this if you want to enable/disable multiple Python versions
5-
#### PYTHON_VERSIONS="${PYTHON_VERSIONS-3.7 3.8 3.9 3.10 3.11}"
5+
#### PYTHON_VERSIONS="${PYTHON_VERSIONS-3.8 3.9 3.10 3.11 3.12}"
66

77
restore_previous_python_version() {
88
if pdm use -f "$1" &>/dev/null; then

scripts/setup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
# un/comment this if you want to enable/disable multiple Python versions
5-
#### PYTHON_VERSIONS="${PYTHON_VERSIONS-3.7 3.8 3.9 3.10 3.11}"
5+
#### PYTHON_VERSIONS="${PYTHON_VERSIONS-3.8 3.9 3.10 3.11 3.12}"
66

77
install_with_pipx() {
88
if ! command -v "$1" &>/dev/null; then

0 commit comments

Comments
 (0)