-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add nix-shell setup for easy development #272
base: next
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've heard it doesn't matter if the 'main' nix-file specifies py-version, but just for good order
This is because the nix python36Packages has some problems, so it's way easier to update this project to python 3.9 :^)
Co-authored-by: Julian Teu <[email protected]>
@falkecarlsen I made the shell show a clear warning about the python-version being used, so hopefully the mismatch isn't as big of a deal. |
Codecov Report
@@ Coverage Diff @@
## next #272 +/- ##
===========================================
- Coverage 82.48% 63.12% -19.36%
===========================================
Files 30 30
Lines 2329 3051 +722
Branches 167 212 +45
===========================================
+ Hits 1921 1926 +5
- Misses 379 1061 +682
- Partials 29 64 +35
Continue to review full report at Codecov.
|
@@ -14,7 +14,7 @@ jobs: | |||
strategy: | |||
max-parallel: 4 | |||
matrix: | |||
python-version: [3.6, 3.7] | |||
python-version: [3.6, 3.9] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't like that this PR inadvertently also changes which next py version we're targeting. Since Django 2.2.17, there has been support for py39, so it's not a problem.
@krestenlaust it works with nixos-23.05, but later versions like 23.11 or unstable seems to have checks in place against the older version of django we use. There seems to be a missing dependency to a module called Also this fork is very outdated I would suggest that if we want a nix shell, i would prefer it to be written as a flake instead, and rewritten to work with the current system. Edit: i do like how this is basing package versions on the requirements.txt tho |
Thanks you for the insight @Mast3rwaf1z 👌 |
Waiting for #409 so we dont need to package ancient versions of Python dependencies. 😎 |
The shell specification uses the current requirements.txt and should add no maintenance.
It makes it very simple for nix users on linux/mac to get ready to work on stregsystemet via
nix-shell
.We can hopefully remove the two custom packages later when @jbjjbjjbj upstreams the packages to
nixpkgs