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 @@ -270,6 +270,7 @@ jobs:
270
270
3.10
271
271
3.11
272
272
3.12
273
+ 3.13
273
274
274
275
- uses : Swatinem/rust-cache@v2
275
276
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 @@ -52,6 +52,28 @@ fn create_venv() {
52
52
context. venv . assert ( predicates:: path:: is_dir ( ) ) ;
53
53
}
54
54
55
+ #[ test]
56
+ fn create_venv_313 ( ) {
57
+ let context = TestContext :: new_with_versions ( & [ "3.13" ] ) ;
58
+
59
+ uv_snapshot ! ( context. filters( ) , context. venv( )
60
+ . arg( context. venv. as_os_str( ) )
61
+ . arg( "--python" )
62
+ . arg( "3.13" ) , @r###"
63
+ success: true
64
+ exit_code: 0
65
+ ----- stdout -----
66
+
67
+ ----- stderr -----
68
+ Using CPython 3.12.[X] interpreter at: [PYTHON-3.12]
69
+ Creating virtual environment at: .venv
70
+ Activate with: source .venv/[BIN]/activate
71
+ "###
72
+ ) ;
73
+
74
+ context. venv . assert ( predicates:: path:: is_dir ( ) ) ;
75
+ }
76
+
55
77
#[ test]
56
78
fn create_venv_project_environment ( ) -> Result < ( ) > {
57
79
let context = TestContext :: new_with_versions ( & [ "3.12" ] ) ;
You can’t perform that action at this time.
0 commit comments