Skip to content

Commit a2c8031

Browse files
district10TANG ZHIXIONG
andauthored
Feature/fix packaging, release 0.1.1 (#5)
* fix source packaging * change to monthly * update version to 0.1.1 Co-authored-by: TANG ZHIXIONG <[email protected]>
1 parent 79a1640 commit a2c8031

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ build_script:
2121
- ps: |
2222
python -m build -s
2323
cd dist
24-
python -m pip install --verbose pybind11_rdp-0.1.0.tar.gz
24+
python -m pip install --verbose pybind11_rdp-0.1.1.tar.gz
2525
cd ..
2626
test_script:
2727
- ps: python -m pytest

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ updates:
44
- package-ecosystem: "github-actions"
55
directory: "/"
66
schedule:
7-
interval: "daily"
7+
interval: "monthly"

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
include README.md LICENSE pybind11/LICENSE
2+
graft headers
23
graft pybind11/include
34
graft pybind11/tools
45
graft src
6+
graft tests
57
global-include CMakeLists.txt *.cmake

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ python_build:
3535
$(PYTHON) setup.py bdist_wheel
3636
python_sdist:
3737
$(PYTHON) setup.py sdist
38+
# tar -tvf dist/pybind11_rdp-*.tar.gz
3839
python_test:
3940
$(PYTHON) -c 'from pybind11_rdp import rdp; print(rdp([[1, 1], [2, 2], [3, 3], [4, 4]]))'
4041
$(PYTHON) test.py

conda.recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: pybind11_rdp
3-
version: 0.1.0
3+
version: 0.1.1
44

55
source:
66
path: ..

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '0.1.0'
63+
version = '0.1.1'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.1.0'
65+
release = '0.1.1'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def build_extension(self, ext):
122122
# logic and declaration, and simpler if you include description/version in a file.
123123
setup(
124124
name="pybind11_rdp",
125-
version="0.1.0",
125+
version="0.1.1",
126126
author="tzx",
127127
author_email="[email protected]",
128128
url="https://github.com/cubao/pybind11-rdp",

0 commit comments

Comments
 (0)