-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathPipfile
34 lines (31 loc) · 1.34 KB
/
Pipfile
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
31
32
33
34
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
## ℹ️ HOW-TO: Make the python-package editable.
#
# 1. Comment out the non-editable codeforlife package under [packages].
# 2. Comment out the non-editable codeforlife package under [dev-packages].
# 3. Uncomment the editable codeforlife package under [dev-packages].
# 4. Run `pipenv install --dev` in your terminal.
#
# ⚠️ Make sure you revert these changes before pushing your changes or the
# pipeline will fail to install the python-package.
#
## ℹ️ HOW-TO: Install a new version of the python-package.
#
# 1. Uncomment the non-editable codeforlife package under [packages].
# 2. Uncomment the non-editable codeforlife package under [dev-packages].
# 3. Comment out the editable codeforlife package under [dev-packages].
# 4. Set the tag of the editable codeforlife packages under [packages] and
# [dev-packages] to have the same tag.
# 5. Run `pipenv install --dev` in your terminal.
[packages]
codeforlife = "==0.24.10"
# 🚫 Don't add [packages] below that are inherited from the CFL package.
[dev-packages]
codeforlife = {version = "==0.24.10", extras = ["dev"]}
# codeforlife = {file = "../codeforlife-package-python", editable = true, extras = ["dev"]}
# 🚫 Don't add [dev-packages] below that are inherited from the CFL package.
[requires]
python_version = "3.12"