kaipy version change 1.1.0 and python < 3.13

This commit is contained in:
cookieenick
2025-06-18 13:08:29 -06:00
parent 3a2cd048cb
commit 913174d55f
2 changed files with 4 additions and 4 deletions

View File

@@ -7,13 +7,13 @@ include-package-data = true
[project]
name = "kaipy"
version = "1.0.8"
version = "1.1.0"
authors = [
{name = "Eric Winter", email = "eric.winter@jhuapl.edu"},
]
description = "Python software for CGS MAGE and other Kaiju models"
readme = "README.md"
requires-python = ">=3.9,<=3.13"
requires-python = ">=3.9,<3.13"
keywords = ["CGS", "MAGE", "KAIJU"]
license = {text = "BSD 3-Clause"}
classifiers = [

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='kaipy',
version='1.0.8',
version='1.1.0',
description='Python software for CGS MAGE and other Kaiju models',
author='Kaiju team',
author_email='wiltbemj@ucar.edu',
@@ -12,7 +12,7 @@ setup(
package_data={'kaipy': ['scripts/*', 'scripts/*/*'],
'kaipy.satcomp': ['sc_helio.json']
},
python_requires='>=3.9,<=3.13',
python_requires='>=3.9,<3.13',
install_requires=[
'alive_progress',
'astropy',