Skip to content

Commit 464d572

Browse files
Adds python 3.14, updates dependecies and bumps up version.
1 parent d1031b1 commit 464d572

6 files changed

Lines changed: 441 additions & 208 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.13"]
15+
python-version: ["3.13", "3.14"]
1616
steps:
1717
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1818
- name: Install the latest version of uv and set the python version

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ and auditability.
1616
- **ASGI Web app management**: Create, delete, reload, and list.
1717
_(as described in the [PythonAnywhere ASGI
1818
documentation](https://help.pythonanywhere.com/pages/ASGICommandLine))_
19-
- **WSGI Web app management**: Reload only _(at the moment)_.
19+
- **WSGI Web app management**: Create, delete, reload, patch, list, and get
20+
info.
2021
- **Scheduled task management**: List, create, update, and delete.
2122
_(Note that this enables LLMs to execute arbitrary commands if a task is
2223
scheduled too soon after creation and deleted after execution. For that we

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"display_name": "PythonAnywhere MCP Server",
55
"description": "Manage files, websites, and scheduled tasks on PythonAnywhere via the Model Context Protocol.",
66
"icon": "icon.png",
7-
"version": "0.0.10",
7+
"version": "0.0.11",
88
"author": {
99
"name": "PythonAnywhere Developers",
1010
"email": "developers@pythonanywhere.com"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pythonanywhere-mcp-server"
7-
version = "0.0.10"
7+
version = "0.0.11"
88
description = "PythonAnywhere Model Context Protocol Server"
99
authors = [
1010
{name = "PythonAnywhere Developers", email = "developers@pythonanywhere.com"}
@@ -19,6 +19,7 @@ classifiers = [
1919
"Development Status :: 2 - Pre-Alpha",
2020
"Intended Audience :: Developers",
2121
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
2223
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2324
"Topic :: Utilities",
2425
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.10"
1+
__version__ = "0.0.11"

0 commit comments

Comments
 (0)