Skip to content

Commit

Permalink
Merge branch 'python-ver'
Browse files Browse the repository at this point in the history
  • Loading branch information
RKrahl committed Jun 21, 2024
2 parents 1217318 + f8cd159 commit 6520bbd
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
distutils-pytest
pytest >=3.0.0
setuptools_scm
systemd-python <235 ; python_version == '3.5'
systemd-python ; python_version > '3.5'
systemd-python
3 changes: 1 addition & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13.0-beta - 3.13.0'
os: [ubuntu-latest]
include:
- python-version: '3.5'
os: ubuntu-20.04
- python-version: '3.6'
os: ubuntu-20.04
steps:
Expand Down
12 changes: 12 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@ Changelog
=========


dev (not yet released)
~~~~~~~~~~~~~~~~~~~~~~

Misc
----

+ `#14`_: drop support for Python 3.5.

.. _#14: https://github.com/RKrahl/auto-patch/pull/14



1.1.0 (2022-10-03)
~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ System requirements

Python:

+ Python 3.5 or newer.
+ Python 3.6 or newer.

External programs:

Expand Down
2 changes: 1 addition & 1 deletion auto-patch.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Summary: $description
License: Apache-2.0
Group: System/Management
Source: %{name}-%{version}.tar.gz
BuildRequires: python3-base >= 3.5
BuildRequires: python3-base >= 3.6
BuildRequires: python3-setuptools
BuildRequires: systemd-rpm-macros
%if %{with tests}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,17 @@ def run(self):
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Systems Administration",
],
python_requires = ">=3.5",
python_requires = ">=3.6",
install_requires = ["systemd"],
packages = [],
py_modules = [],
Expand Down

0 comments on commit 6520bbd

Please sign in to comment.