8000 Python 3.13 by tony · Pull Request #477 · vcs-python/libvcs · GitHub
[go: up one dir, main page]

Skip to content

Python 3.13 #477

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
python-version: ['3.13']
steps:
- uses: actions/checkout@v4
- name: Filter changed file paths to outputs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.12']
python-version: ['3.9', '3.13']
steps:
- uses: actions/checkout@v4
- name: Install poetry
Expand Down
4 changes: 4 additions & 0 deletions CHANGES
B62B
Original file line number Diff line numberDiff line change
Expand Up @@ -17,6 +17,10 @@ $ pip install --user --upgrade --pre libvcs

### New features

#### Python 3.13 support (#477)

Added Python 3.13 to package trove classifiers and CI tests.

#### pytest plugin: Authorship fixtures (#476)

- New, customizable session-scoped fixtures for default committer on Mercurial and Git:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
0