File tree 3 files changed +24
-0
lines changed
3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -279,6 +279,7 @@ jobs:
279
279
3.10
280
280
3.11
281
281
3.12
282
+ 3.13
282
283
283
284
- uses : Swatinem/rust-cache@v2
284
285
with :
Original file line number Diff line number Diff line change
1
+ 3.13.0
1
2
3.12.6
2
3
3.11.10
3
4
3.10.15
Original file line number Diff line number Diff line change @@ -50,6 +50,28 @@ fn create_venv() {
50
50
context. venv . assert ( predicates:: path:: is_dir ( ) ) ;
51
51
}
52
52
53
+ #[ test]
54
+ fn create_venv_313 ( ) {
55
+ let context = TestContext :: new_with_versions ( & [ "3.13" ] ) ;
56
+
57
+ uv_snapshot ! ( context. filters( ) , context. venv( )
58
+ . arg( context. venv. as_os_str( ) )
59
+ . arg( "--python" )
60
+ . arg( "3.13" ) , @r###"
61
+ success: true
62
+ exit_code: 0
63
+ ----- stdout -----
64
+
65
+ ----- stderr -----
66
+ Using CPython 3.13.[X] interpreter at: [PYTHON-3.13]
67
+ Creating virtual environment at: .venv
68
+ Activate with: source .venv/[BIN]/activate
69
+ "###
70
+ ) ;
71
+
72
+ context. venv . assert ( predicates:: path:: is_dir ( ) ) ;
73
+ }
74
+
53
75
#[ test]
54
76
fn create_venv_project_environment ( ) -> Result < ( ) > {
55
77
let context = TestContext :: new_with_versions ( & [ "3.12" ] ) ;
You can’t perform that action at this time.
0 commit comments