Skip to content

Commit

Permalink
v5.9.2 release candidate (#236)
Browse files Browse the repository at this point in the history
* v5.9.2 release candidate

* Update pyproject.toml with metadata and version number.

Preparation for release version 5.9.2.

* Some temporary modifications required until we merge clawpack/pyclaw#712.

---------

Co-authored-by: David Ketcheson <dketch@gmail.com>
  • Loading branch information
rjleveque and ketch committed Nov 4, 2023
1 parent 1b384e5 commit 84be0d7
Show file tree
Hide file tree
Showing 11 changed files with 62 additions and 16 deletions.
2 changes: 1 addition & 1 deletion classic
2 changes: 1 addition & 1 deletion clawpack/__init__.py
Expand Up @@ -23,4 +23,4 @@
__path__.extend(filter(_os.path.isdir, _path))
del _os, _init, _root, _path

__version__ = '5.9.1' # must also be changed in setup.py
__version__ = '5.9.2' # must also be changed in setup.py
2 changes: 1 addition & 1 deletion meson.build
Expand Up @@ -47,7 +47,7 @@ add_project_arguments(
language : 'fortran',
)
add_project_arguments(
'-DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION',
# '-DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION',
cc.get_supported_arguments(
'-Wno-unused-but-set-variable',
),
Expand Down
2 changes: 1 addition & 1 deletion pyclaw
Submodule pyclaw updated 107 files
58 changes: 52 additions & 6 deletions pyproject.toml
@@ -1,9 +1,55 @@
#[build-system]
#requires = [
# "meson-python",
# "numpy",
#]
#build-backend = "mesonpy"
[project]
name = "Clawpack"
version = "5.9.2"
description = "Finite volume methods for hyperbolic conservation laws"
requires-python = ">=3.6"
license = {text = 'BSD-3-Clause'}
keywords = [
"scientific computing",
"numerical methods",
"partial differential equations",
]

classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: C",
"Programming Language :: Fortran",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"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",
"Topic :: Scientific/Engineering",
]

[project.urls]
Homepage = "https://www.clawpack.org/"
Documentation = "https://www.clawpack.org/"
Source = "https://github.com/clawpack/"
Issues = "https://github.com/clawpack/clawpack/issues"
Downloads = "https://github.com/clawpack/clawpack/releases"


[build-system]
requires = [
"meson-python",
"numpy",
]
build-backend = "mesonpy"


[tool.spin]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -58,7 +58,7 @@
# version must also be changed in clawpack/__init__.py
MAJOR = 5
MINOR = 9
MICRO = 1
MICRO = 2
TYPE = ''
VERSION = '%d.%d.%d%s' % (MAJOR, MINOR, MICRO, TYPE)

Expand Down

0 comments on commit 84be0d7

Please sign in to comment.