Skip to content

Commit 24aa48b

Browse files
authored
Merge pull request #39 from MasoniteFramework/deprecation/masonite-5-notice
Deprecate this repository: Masonite Debugbar continues at masonitedev/debugbar
2 parents 9158b39 + e3713a3 commit 24aa48b

4 files changed

Lines changed: 26 additions & 8 deletions

File tree

.github/workflows/pythonpublish.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,14 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v4
1212
- name: Set up Python
13-
uses: actions/setup-python@v1
13+
uses: actions/setup-python@v5
1414
with:
15-
python-version: '3.7'
15+
python-version: '3.10'
1616
- name: Install dependencies
1717
run: |
1818
pip install setuptools wheel twine
19-
make init
20-
make test
2119
- name: Build and publish
2220
env:
2321
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# ⚠️ This repository is no longer maintained
2+
3+
> **Masonite Debugbar development continues at [masonitedev/debugbar](https://github.com/masonitedev/debugbar)** as part of Masonite 5 (a new PyPI package name is coming soon).
4+
> This repository covers `masonite-debugbar` ≤ 1.0.1, which will receive **no further updates** (including security fixes).
5+
>
6+
> - 📖 Masonite documentation: <https://docs.masonite.dev/official-packages/masonite-debugbar/>
7+
>
8+
> ❤️ In memory of [Joseph "Joe" Mancuso](https://github.com/josephmancuso), creator of Masonite.
9+
10+
---
11+
112
# Masonite Debugbar
213

314
A Masonite Python Debugging Tool

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Versions should comply with PEP440. For a discussion on single-sourcing
1010
# the version across setup.py and the project code, see
1111
# https://packaging.python.org/en/latest/single_source_version.html
12-
version='1.0.1',
12+
version='1.0.1.post1',
1313
package_dir={'': 'src'},
1414

1515
description='The Official Masonite Debugbar',
@@ -37,7 +37,7 @@
3737
# https://packaging.python.org/en/latest/requirements.html
3838
install_requires=[
3939
'tabulate',
40-
"jinja2>=3.0<3.1"
40+
"jinja2>=3.0,<4"
4141
],
4242

4343
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
@@ -46,7 +46,7 @@
4646
# 3 - Alpha
4747
# 4 - Beta
4848
# 5 - Production/Stable
49-
'Development Status :: 5 - Production/Stable',
49+
'Development Status :: 7 - Inactive',
5050

5151
# Indicate who your project is intended for
5252
'Intended Audience :: Developers',

src/debugbar/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import warnings
2+
3+
warnings.warn(
4+
"The 'masonite-debugbar' package is unmaintained and will receive no "
5+
"further updates. Masonite Debugbar development continues at "
6+
"https://github.com/masonitedev/debugbar as part of Masonite 5.",
7+
FutureWarning,
8+
stacklevel=2,
9+
)

0 commit comments

Comments
 (0)