Martin Robinson
709d00583f
layout: Make all word separators justification opportunities ( #30866 )
...
This change adapts both layout and legacy layout to the specification
which gives a list of word separators to use as justification
opportunities.
2023-12-21 22:49:24 +00:00
dependabot[bot]
8e31daeb6b
build(deps): bump syn from 2.0.41 to 2.0.42 ( #30908 )
...
Bumps [syn](https://github.com/dtolnay/syn ) from 2.0.41 to 2.0.42.
- [Release notes](https://github.com/dtolnay/syn/releases )
- [Commits](https://github.com/dtolnay/syn/compare/2.0.41...2.0.42 )
---
updated-dependencies:
- dependency-name: syn
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-21 20:47:21 +00:00
Samson
d296f0c5be
Fix flake8 config ( #30907 )
...
* Fix flake8 config
* Add excludes for flake8
2023-12-21 17:09:56 +00:00
dependabot[bot]
8c257298c5
build(deps): bump anyhow from 1.0.75 to 1.0.76 ( #30909 )
...
Bumps [anyhow](https://github.com/dtolnay/anyhow ) from 1.0.75 to 1.0.76.
- [Release notes](https://github.com/dtolnay/anyhow/releases )
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.76 )
---
updated-dependencies:
- dependency-name: anyhow
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-21 16:59:16 +00:00
Martin Robinson
f2882879d8
Fix the try build when pushing to branches ( #30903 )
...
Make it so that all try builds go through try.yml and pass
workflow_call arguments as expected to subsequent workflows.
Co-authored-by: Samson <16504129+sagudev@users.noreply.github.com>
2023-12-21 15:12:54 +00:00
Martin Robinson
74798c4b7b
layout: Add support for text-align-last
( #30905 )
...
This change adds support for `text-align-last` as well as ensuring that
it also applies to lines before forced line breaks. Two tests start to
fail because they rely on right-to-left text to pass:
- /css/css-text/text-align/text-align-last-010.html.ini
- /css/css-text/text-align/text-align-last-011.html.ini
2023-12-21 14:45:34 +00:00
Martin Robinson
d007d265bd
Fix the unwind-sys build on latest Fedora ( #30906 )
...
The libunwind library version installed includes an rc number. The
latest released version of the `unwind-sys` crate doesn't handle this
properly, so rely on the latest commit in the upstream repository.
2023-12-21 14:37:00 +00:00
atbrakhi
a9bf29cf8a
Fix crash caused by arithmetic underflow in layout2020 ( #30897 )
...
* fix crash caused by arithmetic underflow
* add WPT crash test to avoid regressions
* update manifest
* apply martin's patch
* remove wpt test
2023-12-21 09:16:23 +00:00
Martin Robinson
abb017b854
script: Allow moving back to non-quirks mode ( #30898 )
...
The code in script is written so that the document itself can move from
quirks to non-quirks mode, but this is never communicated to layout --
meaning quirky layout keeps happening. This is an issue when rewriting
the entire document with `document.write()` which is what some WPT tests
do to test quirks mode behavior.
2023-12-21 08:14:00 +00:00
dependabot[bot]
c8cfab2518
build(deps): bump tokio from 1.35.0 to 1.35.1 ( #30901 )
...
Bumps [tokio](https://github.com/tokio-rs/tokio ) from 1.35.0 to 1.35.1.
- [Release notes](https://github.com/tokio-rs/tokio/releases )
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.35.0...tokio-1.35.1 )
---
updated-dependencies:
- dependency-name: tokio
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-20 17:38:50 +00:00
dependabot[bot]
6f09da1463
build(deps): bump pkg-config from 0.3.27 to 0.3.28 ( #30900 )
...
Bumps [pkg-config](https://github.com/rust-lang/pkg-config-rs ) from 0.3.27 to 0.3.28.
- [Changelog](https://github.com/rust-lang/pkg-config-rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/pkg-config-rs/compare/0.3.27...0.3.28 )
---
updated-dependencies:
- dependency-name: pkg-config
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-20 17:32:21 +00:00
dependabot[bot]
0989ffbf26
build(deps): bump profiling from 1.0.12 to 1.0.13 ( #30899 )
...
Bumps [profiling](https://github.com/aclysma/profiling ) from 1.0.12 to 1.0.13.
- [Changelog](https://github.com/aclysma/profiling/blob/master/CHANGELOG.md )
- [Commits](https://github.com/aclysma/profiling/compare/v1.0.12...v1.0.13 )
---
updated-dependencies:
- dependency-name: profiling
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-20 17:08:07 +00:00
Lucas Montenegro
256ab5353b
These changes fix #30843 ( #30888 )
...
Signed-off-by: Lucas Fabián Montenegro <40044087+lucasMontenegro@users.noreply.github.com>
2023-12-20 05:57:48 +00:00
dependabot[bot]
8bbcf0abaf
build(deps): bump hyper from 0.14.27 to 0.14.28 ( #30884 )
...
* build(deps): bump hyper from 0.14.27 to 0.14.28
Bumps [hyper](https://github.com/hyperium/hyper ) from 0.14.27 to 0.14.28.
- [Release notes](https://github.com/hyperium/hyper/releases )
- [Changelog](https://github.com/hyperium/hyper/blob/v0.14.28/CHANGELOG.md )
- [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v0.14.28 )
---
updated-dependencies:
- dependency-name: hyper
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
* Remove socket2 from servo-tidy.toml
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Touchet <alextouchet@outlook.com>
2023-12-18 18:25:00 +00:00
dependabot[bot]
b156cd5ca2
build(deps): bump home from 0.5.5 to 0.5.9 ( #30883 )
...
Bumps [home](https://github.com/rust-lang/cargo ) from 0.5.5 to 0.5.9.
- [Changelog](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/cargo/commits )
---
updated-dependencies:
- dependency-name: home
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-18 17:20:20 +00:00
dependabot[bot]
a7d5fc4db1
build(deps): bump thiserror from 1.0.50 to 1.0.51 ( #30882 )
...
Bumps [thiserror](https://github.com/dtolnay/thiserror ) from 1.0.50 to 1.0.51.
- [Release notes](https://github.com/dtolnay/thiserror/releases )
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.51 )
---
updated-dependencies:
- dependency-name: thiserror
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-18 17:16:57 +00:00
Servo WPT Sync
5c8fc7309d
Update web-platform-tests to revision b'a85f0dfe538b9cb894388a65dba7a2a21db050c7' ( #30879 )
2023-12-17 11:15:38 +00:00
Alex Touchet
e4aed3d06a
Update branch name to main ( #30877 )
2023-12-16 09:32:20 +00:00
Martin Robinson
ccf0b739df
Add basic support for text-align: justify
( #30807 )
...
This also enables parsing of `text-justify` for non-legacy layout,
though only None is supported (disabling justification).
2023-12-15 14:00:13 +00:00
Delan Azabani
0be30b30ce
Fix the WPT exporter ( #30870 )
...
* Fix the WPT exporter
* apply fixes by @mrobinson
* fix mach test-scripts on NixOS
* rename main_branch_name to default_branch
2023-12-15 11:05:00 +00:00
dependabot[bot]
29eb4878ed
build(deps): bump tokio from 1.34.0 to 1.35.0 ( #30859 )
...
Bumps [tokio](https://github.com/tokio-rs/tokio ) from 1.34.0 to 1.35.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases )
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.0 )
---
updated-dependencies:
- dependency-name: tokio
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-14 14:13:39 +00:00
Martin Robinson
569c4a8823
Integrate hyper_serde into Servo source ( #30803 )
...
hyper_serde changes very infrequently and typically only in order to
upgrade Servo dependencies. crates.io lists hyper_serde as having no
dependents, and its integration will not prevent releasing new versions.
Integrating it will both reduce the number of repositories we have to
maintain as well as making it easier to upgrade Servo dependencies.
2023-12-14 11:43:10 +00:00
dependabot[bot]
5e8f70fc2f
build(deps): bump crossbeam-channel from 0.5.8 to 0.5.9 ( #30872 )
...
Bumps [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam ) from 0.5.8 to 0.5.9.
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases )
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-channel-0.5.8...crossbeam-channel-0.5.9 )
---
updated-dependencies:
- dependency-name: crossbeam-channel
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-13 19:24:49 +00:00
Martin Robinson
01013b9ea8
Re-enable minification to fix the doc build ( #30871 )
...
Disable isn't possible for non-nightly versions of Rust, so this is
currently breaking the doc build. In addition, it seems that the
original issue that triggered this change [^1] is now fixed.
[^1]: https://github.com/rust-lang/rust/issues/58849
2023-12-13 16:57:43 +00:00
dependabot[bot]
7ed6f330cf
build(deps): bump crossbeam-utils from 0.8.16 to 0.8.17 ( #30874 )
...
Bumps [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam ) from 0.8.16 to 0.8.17.
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases )
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-utils-0.8.16...crossbeam-utils-0.8.17 )
---
updated-dependencies:
- dependency-name: crossbeam-utils
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-13 16:57:09 +00:00
dependabot[bot]
95dae276cc
build(deps): bump syn from 2.0.40 to 2.0.41 ( #30873 )
...
Bumps [syn](https://github.com/dtolnay/syn ) from 2.0.40 to 2.0.41.
- [Release notes](https://github.com/dtolnay/syn/releases )
- [Commits](https://github.com/dtolnay/syn/compare/2.0.40...2.0.41 )
---
updated-dependencies:
- dependency-name: syn
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-13 16:48:57 +00:00
Martin Robinson
2fcbcb4b55
Fix two more warnings in WebRender ( #30867 )
...
These appeared after switching to the latest Rust stable release.
2023-12-13 08:07:56 +00:00
Delan Azabani
17f3c45d4f
Add initial support for offscreen rendering ( #30767 )
...
* Offscreen rendering
* shared memory case never actually rendered to backbuffer
* fix compile errors (in theory) when gl crate feature disabled
* update doc comments
* remove dark CentralPanel border covering edges of viewport
* clear to transparent, to avoid pink artifacts
* fix mouse input for browser being consumed by egui
* avoid destroying OpenGL resources unless resizing window
* clean up compositing::gl
* fix flickering around edges after resizing window
* unset invalidate_last_render_target after invalidating
* fix incorrect DRAW_FRAMEBUFFER name when blitting
* bind the widget surface fbo before painting egui
* make composite_specific_target take CompositeTarget, not Option
* compositing: remove cargo feature “gl”
* capitalise FBO in bind log message
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
* capitalise FBO in drop log message
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
* rename RenderTargetInfo fields and use OnceCell for next field
* rename RenderTargetInfo.read to read_back_from_gpu
* document servo_framebuffer_id in Minibrowser::update
* rename needs_fbo to use_offscreen_framebuffer
* capitalise FBO in unbind log message
* clarify the purpose of Minibrowser::on_event
* fix unused_must_use warning
* reduce nesting in Minibrowser::update
* use implicit format argument in panic
* store Minibrowser.widget_surface_fbo as glow type
* explain why servo_framebuffer_id is None in first call site
* rename output_framebuffer_id to offscreen_framebuffer_id
---------
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
2023-12-13 02:49:25 +00:00
Delan Azabani
97e6c72f57
Add multiview feature flag in compositing and constellation ( #30840 )
2023-12-12 08:50:58 +00:00
Delan Azabani
8a226fdb19
constellation: notify embedder when events are hit-tested to browsers ( #30841 )
...
* constellation: notify embedder when events are hit-tested to browsers
* fix compile error in libsimpleservo
* impl From<&CompositorEvent> for CompositorEventVariant
* remove msg temporaries in Constellation::forward_event
* use single wildcard arm in EventDelivered case in handle_servo_events
2023-12-12 06:36:27 +00:00
Delan Azabani
676c170b07
Fix libsimpleservo build on Linux and BSD ( #30865 )
2023-12-12 06:30:41 +00:00
dependabot[bot]
48a95b2471
build(deps): bump libc from 0.2.150 to 0.2.151 ( #30858 )
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.150 to 0.2.151.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.150...0.2.151 )
---
updated-dependencies:
- dependency-name: libc
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-11 17:16:04 +00:00
dependabot[bot]
a4c3ba2a22
build(deps): bump ryu from 1.0.15 to 1.0.16 ( #30856 )
...
Bumps [ryu](https://github.com/dtolnay/ryu ) from 1.0.15 to 1.0.16.
- [Release notes](https://github.com/dtolnay/ryu/releases )
- [Commits](https://github.com/dtolnay/ryu/compare/1.0.15...1.0.16 )
---
updated-dependencies:
- dependency-name: ryu
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-11 17:11:57 +00:00
dependabot[bot]
0a5ccf1bb8
build(deps): bump http-body from 0.4.5 to 0.4.6 ( #30857 )
...
Bumps [http-body](https://github.com/hyperium/http-body ) from 0.4.5 to 0.4.6.
- [Changelog](https://github.com/hyperium/http-body/blob/v0.4.6/CHANGELOG.md )
- [Commits](https://github.com/hyperium/http-body/compare/v0.4.5...v0.4.6 )
---
updated-dependencies:
- dependency-name: http-body
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-11 17:11:35 +00:00
dependabot[bot]
e066700c99
build(deps): bump xcursor from 0.3.4 to 0.3.5 ( #30855 )
...
Bumps [xcursor](https://github.com/esposm03/xcursor-rs ) from 0.3.4 to 0.3.5.
- [Commits](https://github.com/esposm03/xcursor-rs/commits )
---
updated-dependencies:
- dependency-name: xcursor
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-11 17:08:27 +00:00
dependabot[bot]
ae31a01a0e
build(deps): bump itoa from 1.0.9 to 1.0.10 ( #30854 )
...
Bumps [itoa](https://github.com/dtolnay/itoa ) from 1.0.9 to 1.0.10.
- [Release notes](https://github.com/dtolnay/itoa/releases )
- [Commits](https://github.com/dtolnay/itoa/compare/1.0.9...1.0.10 )
---
updated-dependencies:
- dependency-name: itoa
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-11 17:05:29 +00:00
dependabot[bot]
14305f2325
build(deps): bump rustix from 0.38.27 to 0.38.28 ( #30853 )
...
Bumps [rustix](https://github.com/bytecodealliance/rustix ) from 0.38.27 to 0.38.28.
- [Release notes](https://github.com/bytecodealliance/rustix/releases )
- [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.27...v0.38.28 )
---
updated-dependencies:
- dependency-name: rustix
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-11 17:01:05 +00:00
dependabot[bot]
6026386d84
build(deps): bump syn from 2.0.39 to 2.0.40 ( #30852 )
...
Bumps [syn](https://github.com/dtolnay/syn ) from 2.0.39 to 2.0.40.
- [Release notes](https://github.com/dtolnay/syn/releases )
- [Commits](https://github.com/dtolnay/syn/compare/2.0.39...2.0.40 )
---
updated-dependencies:
- dependency-name: syn
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-11 16:57:48 +00:00
dependabot[bot]
8e5dc04347
build(deps): bump profiling from 1.0.11 to 1.0.12 ( #30851 )
...
Bumps [profiling](https://github.com/aclysma/profiling ) from 1.0.11 to 1.0.12.
- [Changelog](https://github.com/aclysma/profiling/blob/master/CHANGELOG.md )
- [Commits](https://github.com/aclysma/profiling/commits )
---
updated-dependencies:
- dependency-name: profiling
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-11 16:56:49 +00:00
Samson
1105eb66e9
Use os version in taplo cache-key & setuptools 65 in py3.8 ( #30848 )
2023-12-11 15:06:43 +00:00
Samson
9f7afe595a
Update mozjs ( #30836 )
2023-12-11 13:25:33 +00:00
atbrakhi
a315bec4ed
Use app units in replaced elements ( #30825 )
...
* use app_units in replaced elements
* fmt
* remove from_f32_px
* fix typo
2023-12-11 11:30:37 +00:00
dependabot[bot]
589f291523
build(deps): bump rustix from 0.38.26 to 0.38.27 ( #30844 )
...
Bumps [rustix](https://github.com/bytecodealliance/rustix ) from 0.38.26 to 0.38.27.
- [Release notes](https://github.com/bytecodealliance/rustix/releases )
- [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.26...v0.38.27 )
---
updated-dependencies:
- dependency-name: rustix
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-09 17:37:59 +00:00
dependabot[bot]
77e04bc13e
build(deps): bump once_cell from 1.18.0 to 1.19.0 ( #30839 )
...
Bumps [once_cell](https://github.com/matklad/once_cell ) from 1.18.0 to 1.19.0.
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md )
- [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0 )
---
updated-dependencies:
- dependency-name: once_cell
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-08 21:56:41 +00:00
Samson
3a5634a20c
Update linux.yml ( #30846 )
2023-12-08 18:14:40 +00:00
dependabot[bot]
a9b64256f4
build(deps): bump rustls from 0.21.9 to 0.21.10 ( #30845 )
...
Bumps [rustls](https://github.com/rustls/rustls ) from 0.21.9 to 0.21.10.
- [Release notes](https://github.com/rustls/rustls/releases )
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md )
- [Commits](https://github.com/rustls/rustls/compare/v/0.21.9...v/0.21.10 )
---
updated-dependencies:
- dependency-name: rustls
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-08 17:43:55 +00:00
Samson
e2743c6141
Bump mozangle to 0.5.0 ( #30546 )
...
* Update mozangle to version 0.5
* Update webglshader CompileOptions and BuiltInResources
* Update webglshader.rs
* Update webglshader.rs
2023-12-08 11:15:01 +00:00
dependabot[bot]
6282c4d147
build(deps): bump try-lock from 0.2.4 to 0.2.5 ( #30838 )
...
Bumps [try-lock](https://github.com/seanmonstar/try-lock ) from 0.2.4 to 0.2.5.
- [Commits](https://github.com/seanmonstar/try-lock/compare/v0.2.4...v0.2.5 )
---
updated-dependencies:
- dependency-name: try-lock
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-07 17:10:00 +00:00
dependabot[bot]
3310199cd0
build(deps): bump unicode-bidi from 0.3.13 to 0.3.14 ( #30837 )
...
Bumps [unicode-bidi](https://github.com/servo/unicode-bidi ) from 0.3.13 to 0.3.14.
- [Release notes](https://github.com/servo/unicode-bidi/releases )
- [Commits](https://github.com/servo/unicode-bidi/commits/v0.3.14 )
---
updated-dependencies:
- dependency-name: unicode-bidi
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-07 17:06:28 +00:00
Corey Farwell
117d59d393
Replace virtualenv with Python's built-in venv ( #30377 )
...
* Replace virtualenv with Python's built-in venv.
* Apply Delan's suggestions and make a couple small fixes
- Fix a tidy warning about directories that don't exist
- Use shutil instead of the redundant get_exec_path
- Miscellaneous cleanups
* Fix typo in environment variable
* fix bug where pip still tries to the wrong site-packages
---------
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
Co-authored-by: Delan Azabani <dazabani@igalia.com>
2023-12-07 08:18:30 +00:00