Skip to content

Commit

Permalink
DIST: Release v0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fumitoh committed Dec 8, 2024
1 parent dcd8990 commit 1a1925d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modelx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""

VERSION = (0, 27, 0)
VERSION = (0, 28, 0)
__version__ = ".".join([str(x) for x in VERSION])
from modelx.core.api import * # must come after __version__ assignment.
try:
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ def get_version(version_tuple):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
],

# What does your project relate to?
Expand Down Expand Up @@ -123,7 +124,7 @@ def get_version(version_tuple):
# specifier string will prevent pip from installing the project on
# other Python versions.
# For example, if your package is for Python 3+ only, write:
python_requires='>=3.6',
python_requires='>=3.7',

# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
Expand Down

0 comments on commit 1a1925d

Please sign in to comment.