Switch to rtx instead of pyenv

This commit is contained in:
Gabriel Augendre 2023-02-28 11:21:33 +01:00
parent 10df25051c
commit 31906c2795
8 changed files with 14 additions and 15 deletions

View File

@ -7,7 +7,7 @@ COMMANDS_TO_RUN = [
"pre-commit install",
"pre-commit autoupdate",
"pre-commit run --all-files",
"git add ./*.txt",
"git add .",
"git commit -m 'Freeze dependencies'",
"pycharm .",
"inv test",
@ -21,8 +21,6 @@ def main():
os.system("git init")
os.system("git add .")
os.system("git commit -m 'Initial commit'")
os.system("pyenv virtualenv {{cookiecutter.python_version}} {{cookiecutter.project_slug}}")
os.system("pyenv local {{cookiecutter.project_slug}}")
print("\nWe created a virtualenv using {{cookiecutter.python_version}} for you.")
print("Run the following commands:")
print("cd {{cookiecutter.project_slug}} && direnv allow")

View File

@ -1,2 +1,3 @@
layout python3
export ENV_FILE="$(realpath ./envs/local-envs.env)"
export DATABASE_URL="sqlite:///$(realpath ./db/db.sqlite3)"

View File

@ -30,13 +30,13 @@ jobs:
uses: tibdex/github-app-token@v1
id: generate-token
with:
app_id: ${{ secrets.PR_APP_ID }}
private_key: ${{ secrets.PR_APP_PRIVATE_KEY }}
app_id: {% raw %}${{ secrets.PR_APP_ID }}{% endraw %}
private_key: {% raw %}${{ secrets.PR_APP_PRIVATE_KEY }}{% endraw %}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
id: create-pull-request
with:
token: ${{ steps.generate-token.outputs.token }}
token: {% raw %}${{ steps.generate-token.outputs.token }}{% endraw %}
commit-message: Update dependencies
base: master
branch: update-dependencies

View File

@ -1,3 +1,5 @@
.direnv/
### Django ###
*.log
*.pot

View File

@ -0,0 +1 @@
python {{ cookiecutter.python_version }}

View File

@ -3,8 +3,6 @@
## Quick start
Clone, then
```shell
pyenv virtualenv {{cookiecutter.python_version}} {{cookiecutter.project_slug}}
pyenv local {{cookiecutter.project_slug}}
pip install pip-tools
pip-sync requirements.txt requirements-dev.txt
pre-commit install --install-hooks

View File

@ -5,7 +5,6 @@ from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [

View File

@ -238,15 +238,15 @@ APP = {
try:
with Path("/app/git/build-date").open() as f:
APP["build"]["date"] = f.read().strip()
except Exception:
pass # noqa: S110
except Exception: # noqa: S110
pass
try:
with Path("/app/git/git-commit").open() as f:
APP["build"]["commit"] = f.read().strip()
except Exception:
pass # noqa: S110
except Exception: # noqa: S110
pass
try:
with Path("/app/git/git-describe").open() as f:
APP["build"]["describe"] = f.read().strip()
except Exception:
pass # noqa: S110
except Exception: # noqa: S110
pass