-
Notifications
You must be signed in to change notification settings - Fork 81
Upgrade to 2.0.0.dev7 #33
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
Conversation
@@ -23,3 +23,7 @@ install: | |||
script: | |||
- ./pants --changed-since=origin/master lint | |||
- ./pants --changed-since=origin/master --changed-include-dependees=transitive test | |||
# Smoke test that our release process will work. | |||
- ./pants binary helloworld/main.py helloworld/main_py2.py |
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.
We should also actually run these binaries (once they run successfully again).
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.
Yes, agreed. This is a TODO in the PR description.
helloworld/util/BUILD
Outdated
@@ -1,32 +1,37 @@ | |||
# Copyright 2020 Pants project contributors. | |||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | |||
|
|||
# See https://pants.readme.io/docs/python-setup-py-goal. | |||
python_distribution( | |||
name="util-dist", |
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.
Just dist
is probably better, to avoid the stutter.
@@ -6,7 +9,7 @@ pantsd = false | |||
# Limit the maximum number of concurrent processes. Change this | |||
# to a number that makes sense for your CI setup, based on | |||
# the number of cores/threads. | |||
process_execution_local_parallelism = 4 | |||
process_execution_local_parallelism = 2 |
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.
Why not just omit this entirely? The default is probably sound. Or at least comment that the default is equal to the number of cores reported by the system.
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.
Because this is likely something people will want to tune, and we want to highlight that it's an option.
Remaining followups: * [ ] Fix `./pants run helloworld/main.py` failing due to import error. Test it in CI. * [ ] Turn on dependency inference. Needs docs update. * [ ] Enable MyPy. * [ ] Possibly change Protobuf structure to show off the new `python_source_root` plugin field. Needs docs update. * [ ] Use `resolve_all_constraints`. Needs docs update. * [ ] Fix all references to readme.io. Fix the `master` branch too. * [ ] Update the `./pants` script. Fix the `master` branch too.
* Update `pants` and `pants.toml` for 2.0 release (#26) * Fix the setup-py part of the example. (#30) Required moving the .proto files to be below the exported target (in the filesystem sense). If we support setting a source root on generated protos in the future, we can modify this further to demo that. * Upgrade to 2.0.0.dev7 (pantsbuild#33) Remaining followups: * [ ] Fix `./pants run helloworld/main.py` failing due to import error. Test it in CI. * [ ] Turn on dependency inference. Needs docs update. * [ ] Enable MyPy. * [ ] Possibly change Protobuf structure to show off the new `python_source_root` plugin field. Needs docs update. * [ ] Use `resolve_all_constraints`. Needs docs update. * [ ] Fix all references to readme.io. Fix the `master` branch too. * [ ] Update the `./pants` script. Fix the `master` branch too. * Update doc URLs to pantsbuild.org (pantsbuild#35) * Upgrade to 2.0.0.dev8 (pantsbuild#37) * Disable failing command. Co-authored-by: Daniel J. Beutel <daniel@adap.com> Co-authored-by: Benjy Weinberger <benjyw@gmail.com> Co-authored-by: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com>
* Update `pants` and `pants.toml` for 2.0 release (#26) * Fix the setup-py part of the example. (#30) Required moving the .proto files to be below the exported target (in the filesystem sense). If we support setting a source root on generated protos in the future, we can modify this further to demo that. * Upgrade to 2.0.0.dev7 (pantsbuild#33) Remaining followups: * [ ] Fix `./pants run helloworld/main.py` failing due to import error. Test it in CI. * [ ] Turn on dependency inference. Needs docs update. * [ ] Enable MyPy. * [ ] Possibly change Protobuf structure to show off the new `python_source_root` plugin field. Needs docs update. * [ ] Use `resolve_all_constraints`. Needs docs update. * [ ] Fix all references to readme.io. Fix the `master` branch too. * [ ] Update the `./pants` script. Fix the `master` branch too. * Update doc URLs to pantsbuild.org (pantsbuild#35) * Upgrade to 2.0.0.dev8 (pantsbuild#37) * Add py2 __init__.py files. (pantsbuild#39) Otherwise `./pants run helloworld:helloworld_py2` doesn't work. * Upgrade to Pants 2.0.0.dev9 (pantsbuild#38) * Upgrade to 2.0.0b0 (pantsbuild#40) * Turn on dependency inference (pantsbuild#41) * update ./pants wrapper with PANTS_SHA support (pantsbuild#42) Update the ./pants wrapper to add support for specifying a main branch version of Pants via PANTS_SHA. * Upgrade to 2.0.0b1 (pantsbuild#44) * Upgrade to 2.0.0b3 (pantsbuild#45) * Upgrade to 2.0.0rc0 (pantsbuild#46) * Enable MyPy (pantsbuild#47) This shows off the MyPy Protobuf plugin and partitioning based on interpreter constraints. * Upgrade to 2.0.0rc1 (pantsbuild#48) This corresponds to an updated entry for https://www.pantsbuild.org/docs/python-interpreter-compatibility#changing-the-interpreter-search-path. * Upgrade to 2.0.0rc2 (pantsbuild#49) * Bump to 2.0.0rc3. (pantsbuild#50) * Upgrade to 2.0.0 (pantsbuild#51) * Upgrade to 2.1.0rc0 (pantsbuild#52) * Update to the latest `./pants` script (pantsbuild#53) This prepares us for 2.2 removing support for running with Py36. * add missing BUILD file. Co-authored-by: Daniel J. Beutel <daniel@adap.com> Co-authored-by: Benjy Weinberger <benjyw@gmail.com> Co-authored-by: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com> Co-authored-by: Tom Dyas <tom.dyas@gmail.com> Co-authored-by: Tom Dyas <tdyas@toolchain.com> Co-authored-by: Stu Hood <stuhood@gmail.com>
* Update `pants` and `pants.toml` for 2.0 release (#26) * Fix the setup-py part of the example. (#30) Required moving the .proto files to be below the exported target (in the filesystem sense). If we support setting a source root on generated protos in the future, we can modify this further to demo that. * Upgrade to 2.0.0.dev7 (pantsbuild#33) Remaining followups: * [ ] Fix `./pants run helloworld/main.py` failing due to import error. Test it in CI. * [ ] Turn on dependency inference. Needs docs update. * [ ] Enable MyPy. * [ ] Possibly change Protobuf structure to show off the new `python_source_root` plugin field. Needs docs update. * [ ] Use `resolve_all_constraints`. Needs docs update. * [ ] Fix all references to readme.io. Fix the `master` branch too. * [ ] Update the `./pants` script. Fix the `master` branch too. * Update doc URLs to pantsbuild.org (pantsbuild#35) * Upgrade to 2.0.0.dev8 (pantsbuild#37) * Add py2 __init__.py files. (pantsbuild#39) Otherwise `./pants run helloworld:helloworld_py2` doesn't work. * Upgrade to Pants 2.0.0.dev9 (pantsbuild#38) * Upgrade to 2.0.0b0 (pantsbuild#40) * Turn on dependency inference (pantsbuild#41) * update ./pants wrapper with PANTS_SHA support (pantsbuild#42) Update the ./pants wrapper to add support for specifying a main branch version of Pants via PANTS_SHA. * Upgrade to 2.0.0b1 (pantsbuild#44) * Upgrade to 2.0.0b3 (pantsbuild#45) * Upgrade to 2.0.0rc0 (pantsbuild#46) * Enable MyPy (pantsbuild#47) This shows off the MyPy Protobuf plugin and partitioning based on interpreter constraints. * Upgrade to 2.0.0rc1 (pantsbuild#48) This corresponds to an updated entry for https://www.pantsbuild.org/docs/python-interpreter-compatibility#changing-the-interpreter-search-path. * Upgrade to 2.0.0rc2 (pantsbuild#49) * Bump to 2.0.0rc3. (pantsbuild#50) * Upgrade to 2.0.0 (pantsbuild#51) * Upgrade to 2.1.0rc0 (pantsbuild#52) * Update to the latest `./pants` script (pantsbuild#53) This prepares us for 2.2 removing support for running with Py36. Co-authored-by: Daniel J. Beutel <daniel@adap.com> Co-authored-by: Benjy Weinberger <benjyw@gmail.com> Co-authored-by: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com> Co-authored-by: Tom Dyas <tom.dyas@gmail.com> Co-authored-by: Tom Dyas <tdyas@toolchain.com> Co-authored-by: Stu Hood <stuhood@gmail.com>
Remaining followups:
./pants run helloworld/main.py
failing due to import error. Test it in CI.python_source_root
plugin field. Needs docs update.resolve_all_constraints
. Needs docs update.master
branch too../pants
script. Fix themaster
branch too.