-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from mspi92/dev
Small Code Updates to support Python3.11
- Loading branch information
Showing
6 changed files
with
18 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
name='cimpyorm', # Required | ||
# https://www.python.org/dev/peps/pep-0440/ | ||
# https://packaging.python.org/en/latest/single_source_version.html | ||
version='0.9.4', # Required | ||
version='0.10.0', # Required | ||
# https://packaging.python.org/specifications/core-metadata/#summary | ||
description="A database-backed ORM for CIM datasets.", # Required | ||
# https://packaging.python.org/specifications/core-metadata/#description-optional | ||
|
@@ -39,13 +39,15 @@ | |
author_email="[email protected]", # Optional | ||
# For a list of valid classifiers, see https://pypi.org/classifiers/ | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: BSD License', 'Natural Language :: English', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
'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' | ||
], # Optional | ||
packages=find_packages(exclude=[ | ||
'cimpyorm/Test/Deployment/**', | ||
|