Skip to content

Commit 6f28328

Browse files
committed
update dependencies
1 parent 2591110 commit 6f28328

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/CODEOWNERS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
2+
3+
# GLOBAL CODEOWNERS ---
4+
# These owners will be the default owners for everything in
5+
# the repo. Unless a later match takes precedence,
6+
# they will be requested for review when someone opens a pull request.
7+
* @pylhc/approved-reviewers
8+
* @Mael-Le-Garrec

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Chromaticity GUI is a tool to compute non-linear chromaticity via measuremen
66
## Running via acc-py environment
77

88
* [Create a virtual environment via `acc-py`](https://pylhc.github.io/packages/development/howto_venv.html) if you do not have one already.
9-
* Install the package via `pip install chroma-gui`
9+
* Install the package via `pip install chroma-gui[cern]` or `pip install chroma-gui[all]`
1010
* Run the GUI via `python -m chroma_gui`
1111

1212
## Running via acc-py apps

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ classifiers = [
4747
dependencies = [
4848
"matplotlib",
4949
"tfs-pandas",
50-
"pytimber",
5150
"pyqt5 >= 5.14", # for Qt.MarkdownText
5251
"pandas",
5352
"numpy",
@@ -68,8 +67,12 @@ doc = [
6867
"sphinx >= 7.0",
6968
"sphinx_rtd_theme >= 2.0",
7069
]
70+
cern = [
71+
"pytimber",
72+
]
7173

7274
all = [
75+
"chroma_gui[cern]",
7376
"chroma_gui[test]",
7477
"chroma_gui[doc]",
7578
]

0 commit comments

Comments
 (0)