Skip to content

Commit a2650ec

Browse files
authored
Merge pull request #39 from click-contrib/mark-as-inactive
Mark PyPI package as inactive
2 parents 1f9f53e + 6f5bf55 commit a2650ec

File tree

6 files changed

+10
-41
lines changed

6 files changed

+10
-41
lines changed

.travis.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
1.1.1.1 - 2025-06-24
5+
--------------------
6+
7+
- Mark the project as inactive.
8+
49
1.1.1 - 2019-04-04
510
------------------
611

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
New BSD License
22

3-
Copyright (c) 2015-2019, Kevin D. Wurster, Sean C. Gillies
3+
Copyright (c) 2015-2025, Kevin D. Wurster, Sean C. Gillies
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.rst

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,7 @@
22
click-plugins
33
=============
44

5-
.. image:: https://travis-ci.org/click-contrib/click-plugins.svg?branch=master
6-
:target: https://travis-ci.org/click-contrib/click-plugins?branch=master
7-
8-
.. image:: https://coveralls.io/repos/click-contrib/click-plugins/badge.svg?branch=master&service=github
9-
:target: https://coveralls.io/github/click-contrib/click-plugins?branch=master
10-
11-
An extension module for `click <https://github.com/mitsuhiko/click>`_ to register
5+
An extension module for `click <https://github.com/pallets/click>`_ to register
126
external CLI commands via setuptools entry-points.
137

148

click_plugins/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ def subcommand(arg):
2424
from click_plugins.core import with_plugins
2525

2626

27-
__version__ = '1.1.1'
27+
__version__ = '1.1.1.1'
2828
__author__ = 'Kevin Wurster, Sean Gillies'
2929
3030
__source__ = 'https://github.com/click-contrib/click-plugins'
3131
__license__ = '''
3232
New BSD License
3333
34-
Copyright (c) 2015-2019, Kevin D. Wurster, Sean C. Gillies
34+
Copyright (c) 2015-2025, Kevin D. Wurster, Sean C. Gillies
3535
All rights reserved.
3636
3737
Redistribution and use in source and binary forms, with or without

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
classifiers=[
4343
'Topic :: Utilities',
4444
'Intended Audience :: Developers',
45-
'Development Status :: 5 - Production/Stable',
45+
'Development Status :: 7 - Inactive',
4646
'License :: OSI Approved :: BSD License',
4747
'Programming Language :: Python',
4848
'Programming Language :: Python :: 3',

0 commit comments

Comments
 (0)