Skip to content

Commit 59ec54c

Browse files
committed
Bump version to 0.0.27
1 parent 05ecea0 commit 59ec54c

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

setup.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# -*- coding: utf-8 -*-
2-
import os
32

43
from setuptools import find_packages, setup
54

65
import strictdoc
76

87
package_data = {
9-
"": ["requirements.txt", "requirements.development.txt"],
108
# It looks like the package data in setup.py does not support globbing
119
# (see pypa/setuptools#1806, https://github.com/pypa/setuptools/issues/1806)
1210
# Doing the globbing manually for now.
@@ -22,11 +20,6 @@
2220
],
2321
}
2422

25-
data_files = [
26-
"requirements.txt",
27-
"requirements.development.txt",
28-
]
29-
3023
with open("requirements.txt") as fp:
3124
REQUIREMENTS = fp.read()
3225

@@ -64,13 +57,11 @@
6457
),
6558
"package_data": package_data,
6659
# 'package_dir': {"": "strictdoc"},
67-
"data_files": data_files,
6860
"install_requires": REQUIREMENTS,
6961
"extras_require": REQUIREMENTS_DEVELOPMENT,
7062
"setup_requires": REQUIREMENTS_SETUP,
7163
"entry_points": entry_points,
7264
"python_requires": ">=3.6.2,<4.0.0",
7365
}
7466

75-
7667
setup(**setup_kwargs)

strictdoc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
22

3-
__version__ = "0.0.26"
3+
__version__ = "0.0.27"
44

55
STRICTDOC_ROOT_PATH = os.path.join(os.path.dirname(__file__), "..")

0 commit comments

Comments
 (0)