Skip to content

Commit

Permalink
move supported python version to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
lebouquetin committed Sep 9, 2024
1 parent b95f9ec commit df5e37d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Today, it's a django app that can generate a static website with Vite & Typescri
```shell
$ git clone https://github.com/algoo/jssg.git
$ cd jssg
$ python3.9 -m venv env/
$ python3.12 -m venv env/
$ source env/bin/activate
$ direnv allow
$ npm install
Expand Down
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@
"./jssg/templates/jssg/*"
],
"@s:django_jinja_markdown/*": [
"./env/lib/python3.9/site-packages/django_jinja_markdown/static/django_jinja_markdown/*"
"./env/lib/python3.12/site-packages/django_jinja_markdown/static/django_jinja_markdown/*"
],
"@t:django_jinja_markdown/*": [
"./env/lib/python3.9/site-packages/django_jinja_markdown/templates/django_jinja_markdown/*"
"./env/lib/python3.12/site-packages/django_jinja_markdown/templates/django_jinja_markdown/*"
],
"@s:django_distill/*": [
"./env/lib/python3.9/site-packages/django_distill/static/django_distill/*"
"./env/lib/python3.12/site-packages/django_distill/static/django_distill/*"
],
"@t:django_distill/*": [
"./env/lib/python3.9/site-packages/django_distill/templates/django_distill/*"
"./env/lib/python3.12/site-packages/django_distill/templates/django_distill/*"
]
}
},
Expand Down

0 comments on commit df5e37d

Please sign in to comment.