-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81a7075
commit ce5045e
Showing
3 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters