Skip to content

Commit b9e3205

Browse files
committed
CI Failure
1 parent a43dc78 commit b9e3205

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

example_tomlgen/README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ An example extension with automatically generated ``Cargo.toml`` manifest
55
files. Simply run ``python setup.py tomlgen_rust`` to generate the following
66
files:
77

8-
* ``Cargo.toml`` for ``hello.english``
8+
* ``Cargo.toml`` for ``hello-english``
99

1010
.. code-block:: toml
1111
1212
[package]
13-
name = "hello.english"
13+
name = "hello-english"
1414
version = "0.1.0"
1515
authors = ["Martin Larralde <[email protected]>"]
1616
publish = false
@@ -95,7 +95,7 @@ probably a good place to add ``pyo3`` as a dependency.
9595

9696
To specify per-extension dependency, create a section for each extension
9797
(``[tomlgen_rust.dependencies.<DOTTEDPATH>]``, where ``<DOTTEDPATH>`` is the
98-
complete Python path to the extension (e.g. ``hello.english``). Extension
98+
complete Python path to the extension (e.g. ``hello-english``). Extension
9999
specific dependencies are added *after* global dependencies.
100100

101101
*Note that, since all projects are built in the same directory, you can also

example_tomlgen/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ create_workspace = true
1212
[tomlgen_rust.dependencies]
1313
pyo3 = { version = "*", features = ["extension-module"] }
1414

15-
[tomlgen_rust.dependencies.hello.english]
15+
[tomlgen_rust.dependencies.hello-english]
1616
english-lint = "*"
1717

1818
[aliases]

0 commit comments

Comments
 (0)