Skip to content

Commit

Permalink
Updated version number to v0.1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
freddieknets committed Nov 2, 2022
1 parent 81a7075 commit ce5045e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
[tool.poetry]
name = "xcoll"
version = "0.1.1"
version = "0.1.2"
description = "Xsuite collimation package"
homepage = "https://github.com/xsuite/xcoll"
repository = "https://github.com/xsuite/xcoll"
authors = [
"Frederik F. Van der Veken <[email protected]>",
"Despina Demetriadou <[email protected]>",
"Andrey Abramov <[email protected]>",
"Giovanni Iadorala <[email protected]>"
]
readme = "README.md"
license = "Apache 2.0"
include = [ "LICENSE", "NOTICE" ]


[tool.poetry.dependencies]
python = ">=3.8" # The upper bound is required by scipy
python = ">=3.8"
#numpy
#pandas
#scipy
Expand All @@ -22,8 +27,6 @@ python = ">=3.8" # The upper bound is required by scipy

[tool.poetry.dev-dependencies]
pytest = "^5.2"
jupyter = "^1.0.0"
ipykernel = "^6.13.0"

[build-system]
# Needed for pip install -e (BTW: need pip version 22)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from xcoll import __version__

def test_version():
assert __version__ == '0.1.1'
assert __version__ == '0.1.2'

2 changes: 1 addition & 1 deletion xcoll/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from .manager import CollimatorManager
from .colldb import CollDB, load_SixTrack_colldb

__version__ = '0.1.1'
__version__ = '0.1.2'

0 comments on commit ce5045e

Please sign in to comment.