Skip to content

Commit ce5045e

Browse files
committed
Updated version number to v0.1.2.
1 parent 81a7075 commit ce5045e

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

pyproject.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
[tool.poetry]
22
name = "xcoll"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Xsuite collimation package"
5+
homepage = "https://github.com/xsuite/xcoll"
56
repository = "https://github.com/xsuite/xcoll"
67
authors = [
78
"Frederik F. Van der Veken <[email protected]>",
89
"Despina Demetriadou <[email protected]>",
910
"Andrey Abramov <[email protected]>",
1011
"Giovanni Iadorala <[email protected]>"
1112
]
13+
readme = "README.md"
14+
license = "Apache 2.0"
15+
include = [ "LICENSE", "NOTICE" ]
16+
1217

1318
[tool.poetry.dependencies]
14-
python = ">=3.8" # The upper bound is required by scipy
19+
python = ">=3.8"
1520
#numpy
1621
#pandas
1722
#scipy
@@ -22,8 +27,6 @@ python = ">=3.8" # The upper bound is required by scipy
2227

2328
[tool.poetry.dev-dependencies]
2429
pytest = "^5.2"
25-
jupyter = "^1.0.0"
26-
ipykernel = "^6.13.0"
2730

2831
[build-system]
2932
# Needed for pip install -e (BTW: need pip version 22)

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from xcoll import __version__
22

33
def test_version():
4-
assert __version__ == '0.1.1'
4+
assert __version__ == '0.1.2'
55

xcoll/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
from .manager import CollimatorManager
77
from .colldb import CollDB, load_SixTrack_colldb
88

9-
__version__ = '0.1.1'
9+
__version__ = '0.1.2'

0 commit comments

Comments
 (0)