Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit ecd8c4a

Browse files
committed
Merge branch 'master' into samples-default-values
2 parents cacc823 + 5662159 commit ecd8c4a

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
### [0.4.1](https://www.github.com/googleapis/python-compute/compare/v0.4.0...v0.4.1) (2021-06-16)
4+
5+
6+
### Bug Fixes
7+
8+
* exclude docs and tests from package ([#65](https://www.github.com/googleapis/python-compute/issues/65)) ([c157bf5](https://www.github.com/googleapis/python-compute/commit/c157bf507227d7c1c815d5e236e4d710e12fbdec))
9+
310
## [0.4.0](https://www.github.com/googleapis/python-compute/compare/v0.3.0...v0.4.0) (2021-06-07)
411

512

samples/snippets/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
google-cloud-compute==0.4.0
1+
google-cloud-compute==0.4.1

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import os
2020
import setuptools # type: ignore
2121

22-
version = "0.4.0"
22+
version = "0.4.1"
2323

2424
package_root = os.path.abspath(os.path.dirname(__file__))
2525

@@ -35,7 +35,11 @@
3535
author_email="[email protected]",
3636
license="Apache 2.0",
3737
url="https://github.com/googleapis/python-compute",
38-
packages=setuptools.PEP420PackageFinder.find(),
38+
packages=[
39+
package
40+
for package in setuptools.PEP420PackageFinder.find()
41+
if package.startswith("google")
42+
],
3943
namespace_packages=("google", "google.cloud"),
4044
platforms="Posix; MacOS X; Windows",
4145
include_package_data=True,

0 commit comments

Comments
 (0)