Skip to content

Commit

Permalink
Setup for release on PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
ddrous committed May 28, 2024
1 parent 0ee5c69 commit 4d660a9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ General steps for creating a new release: https://carpentries-incubator.github.i


- pip install build
- python3 -m build
- python3 -m build (make sure the `dist` folder is empty)
- pip install twine
- twine check dist/*
- Add PyPI token to ~/.pypirc
Expand Down
6 changes: 1 addition & 5 deletions docs/assets/NextRelease.md
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
For the next release v1.0.2
- [X] Added colorbar to animate fields
- [X] Fixed the args inputs to construct the local matrix for nodal_div_grad: (if array, else, etc.)
- [X] Implemented the Darcy flow problem
- [X] Faster linear solves with Lineax
For the next release v1.0.3
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "updes"
description = "Universal Partial Differential Equations Simulator"
version = "1.0.1.post"
version = "1.0.2"
readme = "docs/assets/README_PyPI.md"
authors = [
{ name = "Roussel Desmond Nzoyem", email = "desmond.ngueguin@gmail.com" }
Expand Down
2 changes: 1 addition & 1 deletion updes/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
RBF = None ## Default radial basis function
MAX_DEGREE = None ## Max degree for monomials
DIM = 2 ## Default problem dimension
__version__ = "1.0.1" ## Package version ## TODO check if okay to do this here
__version__ = "1.0.2" ## Package version ## TODO check if okay to do this here

PREALLOCATE = False
if not PREALLOCATE:
Expand Down

0 comments on commit 4d660a9

Please sign in to comment.