Skip to content

Commit

Permalink
feat: add python 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Oct 16, 2024
1 parent e4d8729 commit 2103e6d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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:

Expand Down Expand Up @@ -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:

Expand Down Expand Up @@ -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:

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 @@
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"""
Expand Down Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit 2103e6d

Please sign in to comment.