File tree 2 files changed +14
-12
lines changed
Filter options
2 files changed +14
-12
lines changed
Original file line number Diff line number Diff line change
1
+ Create semver package and split code among different modules in the packages.
2
+
3
+ * Remove :file: `semver.py `
4
+ * Create :file: `src/semver/__init__.py `
5
+ * Create :file: `src/semver/cli.py ` for all CLI methods
6
+ * Create :file: `src/semver/_deprecated.py ` for the ``deprecated `` decorator and other deprecated functions
7
+ * Create :file: `src/semver/__main__.py ` to allow calling the CLI using :command: `python -m semver `
8
+ * Create :file: `src/semver/_types.py ` to hold type aliases
9
+ * Create :file: `src/semver/version.py ` to hold the :class: `VersionInfo ` class and its utility functions
10
+ * Create :file: `src/semver/__about__.py ` for all the metadata variables
11
+
Original file line number Diff line number Diff line change 1
- Create semver package and split code among different modules in the packages.
2
-
3
- * Remove :file: `semver.py `
4
- * Create :file: `src/semver/__init__.py `
5
- * Create :file: `src/semver/cli.py ` for all CLI methods
6
- * Create :file: `src/semver/_deprecated.py ` for the ``deprecated `` decorator and other deprecated functions
7
- * Create :file: `src/semver/__main__.py ` to allow calling the CLI using :command: `python -m semver `
8
- * Create :file: `src/semver/_types.py ` to hold type aliases
9
- * Create :file: `src/semver/version.py ` to hold the :class: `VersionInfo ` class and its utility functions
10
- * Create :file: `src/semver/__about__.py ` for all the metadata variables
11
-
12
1
Adapted infrastructure code to the new project layout.
13
2
14
3
* Replace :file: `setup.py ` with :file: `setup.cfg ` because the :file: `setup.cfg ` is easier to use
15
4
* Adapt documentation code snippets where needed
16
5
* Adapt tests
17
- * Changed the ``deprecated `` to hardcode the ``semver `` package name in the warning.
6
+ * Changed the ``deprecated `` to hardcode the ``semver `` package name in the warning.
7
+
8
+ Increase coverage to 100% for all non-deprecated APIs
You can’t perform that action at this time.
0 commit comments