diff --git a/.github/workflows/Deployment.yml b/.github/workflows/Deployment.yml index ae57a4fab..89bc21bc7 100644 --- a/.github/workflows/Deployment.yml +++ b/.github/workflows/Deployment.yml @@ -33,7 +33,7 @@ jobs: runs-on: windows-2019 strategy: matrix: - python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12" ] + python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12", "3.13" ] steps: @@ -41,7 +41,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -77,7 +77,7 @@ jobs: runs-on: macos-12 strategy: matrix: - python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12" ] + python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12", "3.13" ] steps: @@ -85,7 +85,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -118,7 +118,7 @@ jobs: runs-on: macos-latest-xlarge strategy: matrix: - python-version: [ "3.10", "3.11", "3.12" ] + python-version: [ "3.10", "3.11", "3.12", "3.13" ] steps: @@ -126,7 +126,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -161,7 +161,7 @@ jobs: CXX: g++-9 strategy: matrix: - python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12" ] + python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12", "3.13" ] steps: @@ -169,7 +169,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -210,7 +210,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 diff --git a/setup.py b/setup.py index e6abc8b16..7eabf10d0 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ import shutil import subprocess -wip_version = "2.0.0b1" +wip_version = "2.0.0b2" def version_number(): """This function reads the version number which is populated by github actions""" @@ -169,7 +169,7 @@ def setup_package(): long_description_content_type='text/markdown', # Optional url='https://github.com/hoffstadt/DearPyGui', # Optional license = 'MIT', - python_requires='>=3.7', + python_requires='>=3.8', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Education', @@ -180,12 +180,12 @@ def setup_package(): 'Operating System :: Microsoft :: Windows :: Windows 10', 'Operating System :: POSIX', 'Operating System :: Unix', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Software Development :: User Interfaces',