Skip to content
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
7 changes: 2 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
exclude:
- os: macos-latest
python-version: '3.10'
include:
- os: macos-13
python-version: '3.10'
steps:
- uses: actions/checkout@v5
with:
Expand All @@ -43,7 +40,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'
- run: pip install build~=1.2
- run: python -m build
- uses: pypa/gh-action-pypi-publish@release/v1
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION="3.13"
ARG PYTHON_VERSION="3.14"

FROM python:${PYTHON_VERSION}

Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ingit
Copyright (c) 2015-2025 Mateusz Bysiek https://mbdevpl.github.io/
Copyright (c) 2015-2026 Mateusz Bysiek https://mbdevpl.github.io/

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion ingit/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def prepare_parser():
description='''Tool for managing a large collection of repositories in git. If you have
100 git-versioned projects, keeping tabs on everything can be quite troublesome.''',
epilog=make_copyright_notice(
2015, 2025, license_name='GNU General Public License v3 or later (GPLv3+)',
2015, 2026, license_name='GNU General Public License v3 or later (GPLv3+)',
url='https://github.com/mbdevpl/ingit'),
formatter_class=argparse.ArgumentDefaultsHelpFormatter, allow_abbrev=True)
add_version_option(parser, VERSION)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class Package(boilerplates.setup.Package):
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Version Control',
'Topic :: Software Development :: Version Control :: Git',
Expand Down
Loading