We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3496a01 commit a7ecb7cCopy full SHA for a7ecb7c
3 files changed
.gitignore
@@ -9,3 +9,4 @@ venv
9
.vscode/
10
# Fetched from upstream
11
tests/conftest.py
12
+.python-version
.python-version
Makefile
@@ -6,10 +6,12 @@
6
# Likewise, their root-level conftest is not provided as a pytest plugin for
7
# use outside their own tests, but we need their fixtures. We fetch them into
8
# our own namespace here.
+# We also sync the Python version from upstream to ensure compatibility.
deps:
git submodule update --init
poetry run pip install -r deps/sentry/requirements-dev-frozen.txt -e deps/sentry
13
cp -f deps/sentry/tests/conftest.py tests/conftest.py
14
+ cp -f deps/sentry/.python-version .python-version
15
16
clean:
17
rm -rf *.egg-info src/*.egg-info
0 commit comments