-
Notifications
You must be signed in to change notification settings - Fork 11
Update default python version #751
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
Changes from all commits
fa49f4f
74146ef
9b0ebcc
7613cae
e1efe34
0b6a71d
4f55423
28e715c
c6620cc
02b3780
0771520
820afc7
9e05bcf
2906aa4
b5a7243
e37489e
71f058e
a1ec49a
eba2847
aa39e1a
71690e9
2c95e2b
77f7229
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: python | ||
python: | ||
- "3.6" | ||
- "3.7" | ||
sudo: false | ||
env: | ||
- MYPYPATH="$TRAVIS_BUILD_DIR/.travis/mypy-stubs" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,11 +15,17 @@ cd libioc | |
make install | ||
``` | ||
|
||
At the current time libiocage is not packaged or available in FreeBSD ports. | ||
The default Python version is 3.7. If you intend to run libioc from another version, please specify it during the installation: | ||
|
||
```sh | ||
make PYTHON=python3.8 install | ||
``` | ||
|
||
At the current time libioc is not packaged or available in FreeBSD ports. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is not entirely true… There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well, let's tackle this at a different time. Would you open an Issue as a reminder? 💜 |
||
|
||
## Documentation | ||
|
||
- Iocage Handbook: https://bsdci.github.io/handbook | ||
- Ioc Handbook: https://bsdci.github.io/handbook | ||
- Reference Documentation: https://bsdci.github.io/libioc | ||
- Gitter Chat: https://gitter.im/libioc/community | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
gitpython | ||
freebsd_sysctl==0.0.6 | ||
jail==0.0.8 | ||
freebsd_sysctl==0.0.7 | ||
jail==0.0.11 |
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.
given that we already have
LATEST_PYTHON_VERSION
we can use this directly here