Skip to content

Commit

Permalink
Release 1.2.0b0
Browse files Browse the repository at this point in the history
This is a test release to check that the new CI is properly set up.
  • Loading branch information
Sbozzolo committed May 9, 2021
1 parent 0cc962b commit 47a0322
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 32 deletions.
23 changes: 14 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,20 @@ license](https://img.shields.io/badge/License-GPLv3-blue.svg)](http://perso.cran
`kuibit` is a Python library to analyze simulations performed with the Einstein
Toolkit largely inspired by
[PostCactus](https://github.com/wokast/PyCactus/tree/master/PostCactus).
`kuibit` can read simulation data and represent it with high-level classes. For
a list of features available, look at the [official
documentation](https://sbozzolo.github.io/kuibit). For examples and tools that
are ready to be used, you can download the archive that is attached to the
[release](https://github.com/sbozzolo/kuibit/releases/latest/download/examples.tar.gz),
or you can look the [relevant section of the
documentation](https://sbozzolo.github.io/kuibit/#id1). The [testimonials
page](https://sbozzolo.github.io/kuibit/testimonials.html) collects short
reviews about `kuibit`.
`kuibit` can read simulation data and represent it with high-level classes. This
page is mainly intended for developers. Documentation for users is available
[here](https://sbozzolo.github.io/kuibit).

### Quick links

- [Official documentation](https://sbozzolo.github.io/kuibit)
- [Tutorials](https://sbozzolo.github.io/kuibit/#tutorials)
- [Examples](https://sbozzolo.github.io/kuibit/#id1)
- [Archive with most recent examples and tools](https://github.com/sbozzolo/kuibit/releases/latest/download/examples.tar.gz)
- [Changelog](https://github.com/Sbozzolo/kuibit/releases)
- [What people say about kuibit](https://sbozzolo.github.io/kuibit/testimonials.html)
- [Users/developers group chat](https://t.me/kuibit)


## Installation

Expand Down
2 changes: 0 additions & 2 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ Python required to complete the task.
data. [====]
* Correctly identify and merge refinement levels in `HierarchicalGridData` even
where there are multiple centers of refinement. [===]
* Linear momentum lost by gravitational waves. [=]

* Add layer in class hierarchy in `cactus_grid_functions` to save the work done in
reading ASCII files containing multiple variables. [==]
Expand All @@ -28,7 +27,6 @@ Python required to complete the task.

* Transparently handle low dimensional grid data with higher dimensional one is
available (e.g. add to the `xy` if `xyz` is available). [==]
* Add natural Python slicing operators to grid data (e.g. [:, 1] = slice([None, 1])). [==]
* Add support for HDF5 for `AHFinderDirect` output. [==]
* Add method to merge `AHFinderDirect` patches. [==]
* Perform interpolation in shapes of `AHFinderDirect` to better find shapes when
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Gabriele Bozzola'

# The full version, including alpha/beta/rc tags
release = '1.1.1'
release = '1.2.0b0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion kuibit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""

__version__ = "1.1.1"
__version__ = "1.2.0b0"

__bibtex__ = """\
@article{kuibit,
Expand Down
34 changes: 17 additions & 17 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kuibit"
version = "1.1.1"
version = "1.2.0b0"
description = "Read and analyze Einstein Toolkit simulations."
authors = ["Gabriele Bozzola <[email protected]>"]
maintainers = ["Gabriele Bozzola <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_kuibit.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

class Testkuibit(unittest.TestCase):
def test_version(self):
self.assertEqual(__version__, "1.1.1")
self.assertEqual(__version__, "1.2.0b0")

def test_bibtex(self):
self.assertIn("Bozzola", __bibtex__)

0 comments on commit 47a0322

Please sign in to comment.