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
8 changes: 3 additions & 5 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.7'
python-version: '3.10'
- name: Install dependencies
run: |
pip install setuptools wheel twine
make init
make test
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# ⚠️ This repository is no longer maintained

> **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).
> This repository covers `masonite-debugbar` ≤ 1.0.1, which will receive **no further updates** (including security fixes).
>
> - 📖 Masonite documentation: <https://docs.masonite.dev/official-packages/masonite-debugbar/>
>
> ❤️ In memory of [Joseph "Joe" Mancuso](https://github.com/josephmancuso), creator of Masonite.

---

# Masonite Debugbar

A Masonite Python Debugging Tool
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='1.0.1',
version='1.0.1.post1',
package_dir={'': 'src'},

description='The Official Masonite Debugbar',
Expand Down Expand Up @@ -37,7 +37,7 @@
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
'tabulate',
"jinja2>=3.0<3.1"
"jinja2>=3.0,<4"
],

# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand All @@ -46,7 +46,7 @@
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',
'Development Status :: 7 - Inactive',

# Indicate who your project is intended for
'Intended Audience :: Developers',
Expand Down
9 changes: 9 additions & 0 deletions src/debugbar/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import warnings

warnings.warn(
"The 'masonite-debugbar' package is unmaintained and will receive no "
"further updates. Masonite Debugbar development continues at "
"https://github.com/masonitedev/debugbar as part of Masonite 5.",
FutureWarning,
stacklevel=2,
)
Loading