This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import argparse | |
import pathlib | |
def main(): | |
parser = argparse.ArgumentParser() | |
parser.add_argument("--members", metavar="COUNT", type=int, default=1000) | |
parser.add_argument("--nest", metavar="COUNT", type=int, default=1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
poetry update -vvv | |
Virtualenv foo-py2.7 already exists. | |
Using virtualenv: C:\Users\user\AppData\Local\pypoetry\Cache\virtualenvs\foo-py2.7 | |
Updating dependencies | |
Resolving dependencies... | |
1: fact: foo is 0.1.0 | |
1: derived: foo | |
1: fact: foo depends on p4python (*) | |
1: fact: foo depends on pytest (^3.0) | |
1: selecting foo (0.1.0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "foo" | |
version = "0.1.0" | |
description = "" | |
authors = ["Ed Page <email>"] | |
[tool.poetry.dependencies] | |
python = "*" | |
p4python = "*" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
setlocal | |
set PATH=%PATH%;C:\Users\epage.AMER\.rustup\toolchains\nightly-x86_64-pc-windows-msvc\lib\rustlib\x86_64-pc-windows-msvc\lib\ | |
%* | |
endlocal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Update rustup | |
rustup self update | |
# Update the default rustc | |
rustup update | |
# Switch to nightly | |
rustup default nightly |