You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+7-8Lines changed: 7 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,11 +22,10 @@ cd rsconnect-python
22
22
python3 -m venv .venv
23
23
# Activate the virtual environment
24
24
source .venv/bin/activate
25
-
# install our requirements into the virtual environment
26
-
pip install -r requirements.txt
27
-
# install rsconnect-python with a symbolic link to the locations repository,
28
-
# meaning any changes to code in there will automatically be reflected
29
-
pip install -e ./
25
+
# Install rsconnect-python with a symbolic link to the locations repository,
26
+
# meaning any changes to code in there will automatically be reflected.
27
+
# Also install dev/test dependencies.
28
+
pip install -e '.[test]'
30
29
```
31
30
32
31
## Workflow
@@ -46,8 +45,8 @@ make test
46
45
make all-tests
47
46
```
48
47
49
-
As another example, the [`test` job in the default GitHub Actions workflow](.github/workflows/main.yml)
50
-
uses some of these targets during the CI for building and testing.
48
+
As another example, the [`test` job in the default GitHub Actions workflow](.github/workflows/main.yml)
49
+
uses some of these targets during the CI for building and testing.
51
50
52
51
## Proposing Change
53
52
@@ -82,7 +81,7 @@ a release will be created and published to the repository
82
81
83
82
rsconnect-python exists on conda-forge as its own [feedstock](https://github.com/conda-forge/rsconnect-python-feedstock)
84
83
85
-
Updating the package requires a fork of the repository and a [push request](https://github.com/conda-forge/rsconnect-python-feedstock#updating-rsconnect-python-feedstock).
84
+
Updating the package requires a fork of the repository and a [push request](https://github.com/conda-forge/rsconnect-python-feedstock#updating-rsconnect-python-feedstock).
86
85
87
86
- For new version/release, update the [meta.yaml](https://github.com/conda-forge/rsconnect-python-feedstock/blob/master/recipe/meta.yaml) file with the new version number, source url, and corresponding checksum.
0 commit comments