File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.3.4
2
+ current_version = 0.3.5
3
3
commit = True
4
4
tag = True
5
5
tag_name = {new_version}
Original file line number Diff line number Diff line change @@ -40,14 +40,14 @@ jobs:
40
40
uses : softprops/action-gh-release@v1
41
41
with :
42
42
files : |
43
- dist/fdtd-0.3.4 .tar.gz
44
- dist/fdtd-0.3.4 -py3-none-any.whl
43
+ dist/fdtd-0.3.5 .tar.gz
44
+ dist/fdtd-0.3.5 -py3-none-any.whl
45
45
- name : Publish to PyPI
46
46
run : |
47
47
pip install --user twine \
48
48
&& twine upload \
49
- dist/fdtd-0.3.4 .tar.gz \
50
- dist/fdtd-0.3.4 -py3-none-any.whl \
49
+ dist/fdtd-0.3.5 .tar.gz \
50
+ dist/fdtd-0.3.5 -py3-none-any.whl \
51
51
--username __token__ \
52
52
--password ${{ secrets.PYPI_API_TOKEN }}
53
53
Original file line number Diff line number Diff line change 1
1
""" Python 3D FDTD Simulator """
2
2
3
3
__author__ = "Floris laporte"
4
- __version__ = "0.3.4 "
4
+ __version__ = "0.3.5 "
5
5
6
6
from .grid import Grid
7
7
from .sources import PointSource , LineSource , PlaneSource
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = fdtd
3
- version = 0.3.4
3
+ version = 0.3.5
4
4
description = a 3D electromagnetic FDTD simulator written in Python
5
5
author = Floris Laporte
6
6
author_email = floris.laporte@gmail.com
You can’t perform that action at this time.
0 commit comments