@@ -145,7 +145,7 @@ def test_interactive_with_dependencies(
145145authors = [
146146 {name = "Your Name",email = "[email protected] "} 147147]
148- license = {text = "MIT"}
148+ license = "MIT"
149149requires-python = ">=3.6"
150150dependencies = [
151151 "pendulum (>=2.0.0,<3.0.0)",
@@ -201,7 +201,7 @@ def test_interactive_with_dependencies_and_no_selection(
201201authors = [
202202 {name = "Your Name",email = "[email protected] "} 203203]
204- license = {text = "MIT"}
204+ license = "MIT"
205205requires-python = ">=3.6"
206206"""
207207
@@ -269,7 +269,7 @@ def test_interactive_with_git_dependencies(
269269authors = [
270270 {name = "Your Name",email = "[email protected] "} 271271]
272- license = {text = "MIT"}
272+ license = "MIT"
273273requires-python = ">=3.6"
274274dependencies = [
275275 "demo @ git+https://github.com/demo/demo.git"
@@ -364,7 +364,7 @@ def test_interactive_with_git_dependencies_with_reference(
364364authors = [
365365 {name = "Your Name",email = "[email protected] "} 366366]
367- license = {text = "MIT"}
367+ license = "MIT"
368368requires-python = ">=3.6"
369369dependencies = [
370370 "demo @ git+https://github.com/demo/demo.git@develop"
@@ -412,7 +412,7 @@ def test_interactive_with_git_dependencies_and_other_name(
412412authors = [
413413 {name = "Your Name",email = "[email protected] "} 414414]
415- license = {text = "MIT"}
415+ license = "MIT"
416416requires-python = ">=3.6"
417417dependencies = [
418418 "demo @ git+https://github.com/demo/pyproject-demo.git"
@@ -467,7 +467,7 @@ def test_interactive_with_directory_dependency(
467467authors = [
468468 {{name = "Your Name",email = "[email protected] "}} 469469]
470- license = {{text = "MIT"}}
470+ license = "MIT"
471471requires-python = ">=3.6"
472472dependencies = [
473473 "demo @ { demo_uri } "
@@ -521,7 +521,7 @@ def test_interactive_with_directory_dependency_and_other_name(
521521authors = [
522522 {{name = "Your Name",email = "[email protected] "}} 523523]
524- license = {{text = "MIT"}}
524+ license = "MIT"
525525requires-python = ">=3.6"
526526dependencies = [
527527 "demo @ { demo_uri } "
@@ -576,7 +576,7 @@ def test_interactive_with_file_dependency(
576576authors = [
577577 {{name = "Your Name",email = "[email protected] "}} 578578]
579- license = {{text = "MIT"}}
579+ license = "MIT"
580580requires-python = ">=3.6"
581581dependencies = [
582582 "demo @ { demo_uri } "
@@ -623,7 +623,7 @@ def test_interactive_with_wrong_dependency_inputs(
623623authors = [
624624 {name = "Your Name",email = "[email protected] "} 625625]
626- license = {text = "MIT"}
626+ license = "MIT"
627627requires-python = ">=3.8"
628628dependencies = [
629629 "foo (==1.19.2)",
@@ -660,7 +660,7 @@ def test_python_option(tester: CommandTester) -> None:
660660authors = [
661661 {name = "Your Name",email = "[email protected] "} 662662]
663- license = {text = "MIT"}
663+ license = "MIT"
664664requires-python = ">=3.6"
665665"""
666666
@@ -691,7 +691,7 @@ def test_predefined_dependency(tester: CommandTester, repo: TestRepository) -> N
691691authors = [
692692 {name = "Your Name",email = "[email protected] "} 693693]
694- license = {text = "MIT"}
694+ license = "MIT"
695695requires-python = ">=3.6"
696696dependencies = [
697697 "pendulum (>=2.0.0,<3.0.0)"
@@ -733,7 +733,7 @@ def test_predefined_and_interactive_dependencies(
733733authors = [
734734 {name = "Your Name",email = "[email protected] "} 735735]
736- license = {text = "MIT"}
736+ license = "MIT"
737737requires-python = ">=3.6"
738738dependencies = [
739739 "pendulum (>=2.0.0,<3.0.0)",
@@ -768,7 +768,7 @@ def test_predefined_dev_dependency(tester: CommandTester, repo: TestRepository)
768768authors = [
769769 {name = "Your Name",email = "[email protected] "} 770770]
771- license = {text = "MIT"}
771+ license = "MIT"
772772requires-python = ">=3.6"
773773dependencies = [
774774]
@@ -814,7 +814,7 @@ def test_predefined_and_interactive_dev_dependencies(
814814authors = [
815815 {name = "Your Name",email = "[email protected] "} 816816]
817- license = {text = "MIT"}
817+ license = "MIT"
818818requires-python = ">=3.6"
819819dependencies = [
820820]
@@ -861,7 +861,7 @@ def test_predefined_all_options(tester: CommandTester, repo: TestRepository) ->
861861authors = [
862862 {name = "Foo Bar",email = "[email protected] "} 863863]
864- license = {text = "MIT"}
864+ license = "MIT"
865865requires-python = ">=3.8"
866866dependencies = [
867867 "pendulum (>=2.0.0,<3.0.0)"
0 commit comments