forked from iris-hep/iris-hep.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.toml
More file actions
30 lines (22 loc) · 666 Bytes
/
pixi.toml
File metadata and controls
30 lines (22 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[project]
name = "iris-hep.github.io"
version = "0.1.0"
description = "Jekyll based website for IRIS-HEP"
authors = ["Matthew Feickert <matthew.feickert@cern.ch>"]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
[tasks]
# Need to use '--user-install' as using pixi instead of rbenv
install = """
gem install --user-install bundler && \
bundle install
"""
check = "bundle exec rake check"
rubocop = "bundle exec rake rubocop"
build = "bundle exec rake build"
serve = "bundle exec rake serve"
clean = "bundle exec rake clean"
clobber = "bundle exec rake clobber"
[dependencies]
ruby = ">=3.1,<3.2"
compilers = ">=1.7.0,<2"