Skip to content

Commit

Permalink
Merge branch 'topic/default/prepare-0.8.0' into 'branch/default'
Browse files Browse the repository at this point in the history
Finally v0.8.0

See merge request fluiddyn/fluidsim!371
  • Loading branch information
paugier committed Jan 31, 2024
2 parents a7d9c00 + 90328ca commit a28ffcf
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 26 deletions.
3 changes: 2 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,13 @@ pages:
build:package:
stage: build
before_script:
- pip install build
- pip install build twine
script:
- cd lib
- rm -rf dist
- python -m build
- ls dist
- twine check --strict dist/*
needs: []
artifacts:
when: always
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ See also the [unreleased changes].

% Security Security in case of vulnerabilities.

## [0.8.0] (2024-01-28)
## [0.8.0] (2024-01-31)

- Build and upload wheels on PyPI with Github Actions.
- Build and upload wheels on PyPI with Github Actions!
- Much better CI in foss.heptapod.net and Github Actions.
- Use the [Meson build system](https://mesonbuild.com) via
[meson-python](https://github.com/mesonbuild/meson-python).
Expand Down
9 changes: 9 additions & 0 deletions lib/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FluidSim Core
=============

Pure-Python core library for [FluidSim](https://fluidsim.readthedocs.io)
framework. This package provides generic base classes and utilities to
build new solvers.

**Documentation**:
<https://fluidsim.readthedocs.io/en/latest/generated/fluidsim_core.html>
9 changes: 0 additions & 9 deletions lib/README.rst

This file was deleted.

3 changes: 2 additions & 1 deletion lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"

[project]
name = 'fluidsim-core'
version = "0.8.0rc3"
version = "0.8.0"
description = "Pure-Python core library for FluidSim framework"
requires-python = ">=3.9"
authors = [
Expand All @@ -14,6 +14,7 @@ dependencies = [
"fluiddyn",
"importlib_metadata; python_version < '3.10'",
]
readme = "README.md"

[project.entry-points."fluidsim_core.tests"]
test = "fluidsim_core.tests.solver"
22 changes: 11 additions & 11 deletions pdm.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ keywords = [
authors = [
{name = "pierre.augier", email = "[email protected]"},
]
version = '0.8.0rc3'
version = '0.8.0'
requires-python = ">=3.9"
dependencies = [
"fluidsim-core>=0.8.0rc3",
"fluidsim-core>=0.8.0",
"h5py",
"h5netcdf",
"transonic>=0.6.0",
Expand Down

0 comments on commit a28ffcf

Please sign in to comment.