You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

amuse-fi

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amuse-fi - pypi Package Compare versions

Comparing version
2023.10.0rc1
to
2023.10.0rc2
+16
src/amuse/community/fi/_version.py
# file generated by setuptools_scm
# don't change, don't track in version control
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union
VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object
version: str
__version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE
__version__ = version = '2023.10.0rc2'
__version_tuple__ = version_tuple = (2023, 10, 0)
+3
-2
Metadata-Version: 2.1
Name: amuse-fi
Version: 2023.10.0rc1
Version: 2023.10.0rc2
Summary: The Astrophysical Multipurpose Software Environment - FI

@@ -26,5 +26,6 @@ Home-page: http://www.amusecode.org/

Classifier: Topic :: Scientific/Engineering :: Astronomy
Requires-Python: >=3.5
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: amuse-framework
This package installs the FI community code for AMUSE.
+1
-1

@@ -13,2 +13,3 @@ MANIFEST.in

src/amuse/community/fi/__init__.py
src/amuse/community/fi/_version.py
src/amuse/community/fi/interface.f90

@@ -18,3 +19,2 @@ src/amuse/community/fi/interface.py

src/amuse/community/fi/patch_globals_dot_h.py
src/amuse/community/fi/version.py
src/amuse/community/fi/data/README.txt

@@ -21,0 +21,0 @@ src/amuse/community/fi/data/input/C.Hcool

Metadata-Version: 2.1
Name: amuse-fi
Version: 2023.10.0rc1
Version: 2023.10.0rc2
Summary: The Astrophysical Multipurpose Software Environment - FI

@@ -26,5 +26,6 @@ Home-page: http://www.amusecode.org/

Classifier: Topic :: Scientific/Engineering :: Astronomy
Requires-Python: >=3.5
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: amuse-framework
This package installs the FI community code for AMUSE.

@@ -36,14 +36,8 @@ #!/usr/bin/env python3

try:
from src.amuse.community.fi.version import version
use_scm_version = False
setup_requires = []
except ImportError:
version = False
setup_requires = ['setuptools_scm']
use_scm_version = {
"root": "../..",
"relative_to": __file__,
"write_to": "src/amuse/community/fi/version.py",
}
setup_requires = ['setuptools_scm']
use_scm_version = {
"root": "../..",
"relative_to": __file__,
"version_file": "src/amuse/community/fi/_version.py",
}

@@ -54,3 +48,2 @@ setup(

setup_requires=setup_requires,
version=version,
classifiers=classifiers,

@@ -65,3 +58,3 @@ url=url,

install_requires=install_requires,
python_requires=">=3.5",
python_requires=">=3.7",
cmdclass=mapping_from_command_name_to_command_class,

@@ -68,0 +61,0 @@ ext_modules=extensions,

# file generated by setuptools_scm
# don't change, don't track in version control
__version__ = version = '2023.10.0rc1'
__version_tuple__ = version_tuple = (2023, 10, 0)