-
-
Notifications
You must be signed in to change notification settings - Fork 474
Comparing changes
Open a pull request
base repository: astral-sh/rye
base: 0.37.0
head repository: astral-sh/rye
compare: 0.38.0
- 12 commits
- 18 files changed
- 6 contributors
Commits on Jul 21, 2024
-
Fix
rye add
andrye remove
to create proper tool.rye section on -……-dev and --exclude flags (#1256) Hey! This is to address issue #1249 Closes #1249 Looks like the `[tool.rye]` section in `pyproject.toml` is not created properly if it was not already presented in the file. This was due to the it not being created as a table. Tested it like that: - Have `pyproject.toml` without `[tool.rye]` table: ``` [project] authors = [{ name = "xxx", email = "xxx@xxx.com" }] name = "rye-test" version = "0.1.0" description = "wasm sample use py2wasm, rust, wasmer, gowasm, wasmedge" readme = "README.md" requires-python = ">=3.11.7" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" ``` - ``` $ rye add --dev ipython ``` results in `pyproject.toml` ``` [project] authors = [{ name = "xxx", email = "xxx@xxx.com" }] name = "rye-test" version = "0.1.0" description = "wasm sample use py2wasm, rust, wasmer, gowasm, wasmedge" readme = "README.md" requires-python = ">=3.11.7" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.rye] dev-dependencies = [ "ipython>=8.26.0", ] ``` Before fix it was: `pyproject.toml` ``` tool = { rye = { dev-dependencies = [ "ipython>=8.26.0", ] } } [project] authors = [{ name = "xxx", email = "xxx@xxx.com" }] name = "rye-test" version = "0.1.0" description = "wasm sample use py2wasm, rust, wasmer, gowasm, wasmedge" readme = "README.md" requires-python = ">=3.11.7" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" ```
Configuration menu - View commit details
-
Copy full SHA for 57b7c08 - Browse repository at this point
Copy the full SHA 57b7c08View commit details
Commits on Jul 23, 2024
-
uninstall_cmd fix in Windows (#1153)
make uninstall_cmd available in Windows
Configuration menu - View commit details
-
Copy full SHA for 3f9dcfb - Browse repository at this point
Copy the full SHA 3f9dcfbView commit details
Commits on Jul 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2fd1895 - Browse repository at this point
Copy the full SHA 2fd1895View commit details
Commits on Jul 25, 2024
-
Always write
--index-url
before--extra-index-url
(#1278)## Summary Closes #1012.
Configuration menu - View commit details
-
Copy full SHA for 1ce72f2 - Browse repository at this point
Copy the full SHA 1ce72f2View commit details
Commits on Jul 27, 2024
-
Use case-insensitive comparison for detecting
rye.exe
(#1286)## Summary This check can be subtly incorrect on case-insensitive filesystems (e.g., NTFS). Seems easiest to just make the whole comparison case-insensitive. Closes #1284.
Configuration menu - View commit details
-
Copy full SHA for 05f1c49 - Browse repository at this point
Copy the full SHA 05f1c49View commit details -
Configuration menu - View commit details
-
Copy full SHA for ec56412 - Browse repository at this point
Copy the full SHA ec56412View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0da8f3f - Browse repository at this point
Copy the full SHA 0da8f3fView commit details
Commits on Jul 30, 2024
-
Fix documentation for readline license (#1297)
NITS: I fixed the license for readline in the documentation to GPLv3. cf. https://tiswww.case.edu/php/chet/readline/rltop.html > Readline is free software, distributed under the terms of the [GNU General Public License, version 3](http://www.gnu.org/licenses/gpl.html). cf. https://gregoryszorc.com/docs/python-build-standalone/main/running.html#licensing > Most licenses are fairly permissive. Notable exceptions to this are GDBM and readline, which are both licensed under GPL Version 3.
Configuration menu - View commit details
-
Copy full SHA for 4b34ca1 - Browse repository at this point
Copy the full SHA 4b34ca1View commit details
Commits on Aug 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c0616e1 - Browse repository at this point
Copy the full SHA c0616e1View commit details
Commits on Aug 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 29e3657 - Browse repository at this point
Copy the full SHA 29e3657View commit details -
Configuration menu - View commit details
-
Copy full SHA for 640c8ce - Browse repository at this point
Copy the full SHA 640c8ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e3c854 - Browse repository at this point
Copy the full SHA 3e3c854View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 0.37.0...0.38.0