File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
* ` maturin develop ` now looks for a virtualenv ` .venv ` in the current or any parent directory if no virtual environment is active.
13
13
* Add a new ` generate-ci ` command to generate CI configuration in [ #1456 ] ( https://github.com/PyO3/maturin/pull/1456 )
14
- * Deprecate ` --univeral2 ` in favor of ` universal2-apple-darwin ` target in [ #1457 ] ( https://github.com/PyO3/maturin/pull/1457 )
14
+ * Deprecate ` --universal2 ` in favor of ` universal2-apple-darwin ` target in [ #1457 ] ( https://github.com/PyO3/maturin/pull/1457 )
15
15
* Raise an error when ` Cargo.toml ` contains removed python package metadata in [ #1471 ] ( https://github.com/PyO3/maturin/pull/1471 )
16
16
* Use ` extension_name ` instead of ` module_name ` for CFFI extensions in develop mode in [ #1476 ] ( https://github.com/PyO3/maturin/pull/1476 )
17
17
Original file line number Diff line number Diff line change @@ -517,7 +517,7 @@ impl BuildOptions {
517
517
518
518
let mut universal2 = self . universal2 ;
519
519
if universal2 {
520
- eprintln ! ( "⚠️ Warning: `--universal2` is deprecated, use `--target univeral2 -apple-darwin` instead" ) ;
520
+ eprintln ! ( "⚠️ Warning: `--universal2` is deprecated, use `--target universal2 -apple-darwin` instead" ) ;
521
521
} else if target_triple. as_deref ( ) == Some ( "universal2-apple-darwin" ) {
522
522
universal2 = true ;
523
523
target_triple = None ;
You can’t perform that action at this time.
0 commit comments