Skip to content

Commit

Permalink
Merge branch 'master' into command-history-update
Browse files Browse the repository at this point in the history
  • Loading branch information
romanvm committed Feb 28, 2024
2 parents e394901 + 3236f9f commit 6fec53b
Show file tree
Hide file tree
Showing 15 changed files with 203 additions and 229 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand All @@ -83,7 +83,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: "3.10"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.11"

- name: Install dependencies
run: |
Expand All @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
13 changes: 13 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,30 @@
Changelog
#########

v.1.6.2
=======
* Rewrite tests with the latest Selenium version.
* Bump asyncore-wsgi version in dependencies.

v.1.6.0
=======

* Removed Python 2 support.
* Moved to the modern Python package layout.

v.1.5.7
=======

* Updated frontend dependencies.

v.1.5.6
=======

* Fixed the issue when a local variable could not be assigned from the debugger console.
* Updated frontend dependencies.

v.1.5.3
=======

* Fixed the issue with closed debugger still being stored in ``active_instance``
class property that prevented starting a new debugger session (thanks to **maiamcc**).
Expand Down
3 changes: 1 addition & 2 deletions Readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Features
- **Globals** and **Locals** boxes show local and global variables in the current scope.
Special variables that start and end with double underscores ``__`` are excluded
(you can always view them using PDB commands).
- Human-readable Unicode literals for Python 2.
- Command history that stores up to 10 last unique PDB commands (accessed by arrow UP/DOWN keys).

.. figure:: https://raw.githubusercontent.com/romanvm/python-web-pdb/master/screenshot.png
Expand Down Expand Up @@ -107,7 +106,7 @@ To simplify this you can use ``set_trace(port=-1)`` to select a random port betw
Compatibility
=============

- **Python**: 2.7, 3+
- **Python**: 3.6+
- **Browsers**: Firefox, Chrome (all modern browsers should work)

License
Expand Down
Loading

0 comments on commit 6fec53b

Please sign in to comment.