Skip to content

Commit

Permalink
Merge branch 'master' into feature/keyboard-navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt authored Jan 6, 2024
2 parents 517206b + 4eaf48e commit 0b62323
Show file tree
Hide file tree
Showing 19 changed files with 224 additions and 123 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/Deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
version:
description: 'Dear PyGui Version'
required: false
default: '0.0.1'
default: '1.10.1'

deploy:
description: 'Deploy (true will deploy to pypi)'
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: windows-2019
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11" ]
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11", "3.12" ]

steps:

Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
shell: cmd
run: |
cd %GITHUB_WORKSPACE%
python -m pip install --upgrade pip twine wheel
python -m pip install --upgrade pip twine wheel setuptools
python -m setup bdist_wheel --plat-name win_amd64 --dist-dir dist
- name: Upload Windows ${{ matrix.python-version }} Wheel
Expand All @@ -79,7 +79,7 @@ jobs:
runs-on: macos-11
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11" ]
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11", "3.12" ]

steps:

Expand All @@ -104,7 +104,7 @@ jobs:
- name: Build Wheel
run: |
cd $GITHUB_WORKSPACE
python -m pip install --upgrade pip twine wheel
python -m pip install --upgrade pip twine wheel setuptools
python -m setup bdist_wheel --plat-name macosx-10.6-x86_64 --dist-dir dist
- name: Upload MacOS 10.15 ${{ matrix.python-version }} Wheel
Expand All @@ -121,7 +121,7 @@ jobs:
CXX: g++-9
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11" ]
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11", "3.12" ]

steps:

Expand All @@ -148,7 +148,7 @@ jobs:
- name: Build Wheel
run: |
cd $GITHUB_WORKSPACE
python -m pip install --upgrade pip twine wheel
python -m pip install --upgrade pip twine wheel setuptools
python -m setup bdist_wheel --plat-name manylinux1_x86_64 --dist-dir dist
- name: Upload Linux ${{ matrix.python-version }} Wheel
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

## Installation

Ensure you have at least Python 3.7 64bit.
Ensure you have at least Python 3.8 64bit.
```
pip install dearpygui
or
Expand Down Expand Up @@ -113,6 +113,8 @@ The built-in demo shows all of Dear PyGui's functionality. Use [this code](https
- [Bug Tracker](https://github.com/hoffstadt/DearPyGui/issues?q=is%3Aissue+is%3Aopen+label%3A%22type%3A+bug%22)
- [Useful code snippets demonstrating best practices](https://github.com/my1e5/dpg-examples)
- [Showcase apps including source code](https://github.com/hoffstadt/DearPyGui/wiki/Dear-PyGui-Showcase) :star:
- [Showcase apps made with older versions of Dear PyGui](https://github.com/hoffstadt/DearPyGui/wiki/Showcase-apps-older-Dear-PyGui-versions)
- [Useful tools and widgets](https://github.com/hoffstadt/DearPyGui/wiki/Tools-and-Widgets)

## Support

Expand Down
6 changes: 3 additions & 3 deletions dearpygui/_dearpygui.pyi

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions dearpygui/_dearpygui_RTD.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 15 additions & 12 deletions dearpygui/dearpygui.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/source/documentation/item-callbacks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sender:
or 0 if trigger by the application.

app_data:
argument is used DPG to send information
argument is used by DPG to send information
to the callback i.e. the current value of most basic widgets.

.. code-block:: python
Expand Down
Loading

0 comments on commit 0b62323

Please # to comment.