Skip to content

Commit dcb3c1e

Browse files
authored
Rename tensorflow-io-plugin-gs to tensorflow-io-gcs-filesystem (#1419)
As was discussed in our SIG IO meeting, this PR renames tensorflow-io-plugin-gs to tensorflow-io-gcs-filesystem Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
1 parent 87f4825 commit dcb3c1e

24 files changed

+65
-65
lines changed

.github/workflows/api.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
rm -rf tensorflow_io
4343
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
4444
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
45-
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-plugin-gs-nightly ; fi
45+
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-gcs-filesystem-nightly ; fi
4646
python -m pip install pytest-benchmark boto3 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
4747
python -m pip freeze
4848
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
@@ -82,7 +82,7 @@ jobs:
8282
rm -rf tensorflow_io
8383
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
8484
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
85-
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-plugin-gs-nightly ; fi
85+
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-gcs-filesystem-nightly ; fi
8686
python -m pip install pytest-benchmark boto3 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
8787
python -m pip freeze
8888
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
@@ -123,7 +123,7 @@ jobs:
123123
rm -rf tensorflow_io
124124
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
125125
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
126-
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-plugin-gs-nightly ; fi
126+
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-gcs-filesystem-nightly ; fi
127127
python -m pip install pytest-benchmark
128128
python -m pip freeze
129129
python -c 'import tensorflow as tf; print(tf.version.VERSION)'

.github/workflows/benchmarks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ jobs:
3131
python --version
3232
df -h
3333
rm -rf tensorflow_io
34-
rm -rf tensorflow_io_plugin_gs
34+
rm -rf tensorflow_io_gcs_filesystem
3535
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
3636
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
37-
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-plugin-gs-nightly ; fi
37+
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-gcs-filesystem-nightly ; fi
3838
python -m pip install -q scikit-image pytest pytest-benchmark boto3 fastavro avro-python3 scikit-image pandas pyarrow==2.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
3939
python -m pip freeze
4040
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
4141
python -c 'import tensorflow_io as tfio; print(tfio.version.VERSION)'
42-
python -c 'from tensorflow_io_plugin_gs.core.python.ops import plugin_gs; print(plugin_gs)'
42+
python -c 'from tensorflow_io_gcs_filesystem.core.python.ops import plugin_gs; print(plugin_gs)'
4343
python -m pytest --benchmark-only -v --import-mode=append $(find . -type f \( -iname "test_*.py" ! \( -iname "test_*_v1.py" -o -iname "test_bigquery.py" \) \))
4444
4545
linux:
@@ -69,15 +69,15 @@ jobs:
6969
python --version
7070
df -h
7171
rm -rf tensorflow_io
72-
rm -rf tensorflow_io_plugin_gs
72+
rm -rf tensorflow_io_gcs_filesystem
7373
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
7474
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
75-
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-plugin-gs-nightly ; fi
75+
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-gcs-filesystem-nightly ; fi
7676
python -m pip install -q scikit-image pytest pytest-benchmark boto3 fastavro avro-python3 scikit-image pandas pyarrow==2.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
7777
python -m pip freeze
7878
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
7979
python -c 'import tensorflow_io as tfio; print(tfio.version.VERSION)'
80-
python -c 'from tensorflow_io_plugin_gs.core.python.ops import plugin_gs; print(plugin_gs)'
80+
python -c 'from tensorflow_io_gcs_filesystem.core.python.ops import plugin_gs; print(plugin_gs)'
8181
python -m pytest --benchmark-only --benchmark-json benchmark.json -v --import-mode=append $(find . -type f \( -iname "test_*.py" ! \( -iname "test_*_v1.py" -o -iname "test_bigquery.py" \) \))
8282
- name: Store benchmark result
8383
uses: rhysd/github-action-benchmark@v1

.github/workflows/build.bazel.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ bazel build \
4141
--noshow_loading_progress \
4242
--verbose_failures \
4343
--test_output=errors \
44-
-- //tensorflow_io/... //tensorflow_io_plugin_gs/...
44+
-- //tensorflow_io/... //tensorflow_io_gcs_filesystem/...
4545

4646
rm -rf build && mkdir -p build
4747

4848
cp -r bazel-bin/tensorflow_io build/tensorflow_io
49-
cp -r bazel-bin/tensorflow_io_plugin_gs build/tensorflow_io_plugin_gs
49+
cp -r bazel-bin/tensorflow_io_gcs_filesystem build/tensorflow_io_gcs_filesystem
5050

5151
exit 0

.github/workflows/build.wheel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export TF_USE_MODULAR_FILESYSTEM=1
66
run_test() {
77
entry=$1
88
CPYTHON_VERSION=$($entry -c 'import sys; print(str(sys.version_info[0])+str(sys.version_info[1]))')
9-
(cd wheelhouse && $entry -m pip install tensorflow_io_plugin_gs-*-cp${CPYTHON_VERSION}-*.whl)
9+
(cd wheelhouse && $entry -m pip install tensorflow_io_gcs_filesystem-*-cp${CPYTHON_VERSION}-*.whl)
1010
(cd wheelhouse && $entry -m pip install tensorflow_io-*-cp${CPYTHON_VERSION}-*.whl)
1111
$entry -m pip install -q pytest pytest-benchmark pytest-xdist boto3 fastavro avro-python3 scikit-image pandas pyarrow==3.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigtable==1.6.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0 PyYAML==5.3.1 azure-storage-blob==12.8.1
1212
(cd tests && $entry -m pytest --benchmark-disable -v --import-mode=append --forked --numprocesses=auto --dist loadfile $(find . -type f \( -iname "test_*.py" \)))

.github/workflows/build.yml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -120,16 +120,16 @@ jobs:
120120
--noshow_loading_progress \
121121
--verbose_failures \
122122
--test_output=errors \
123-
//tensorflow_io/... //tensorflow_io_plugin_gs/...
123+
//tensorflow_io/... //tensorflow_io_gcs_filesystem/...
124124
mkdir build
125125
cp -r bazel-bin/tensorflow_io build
126-
cp -r bazel-bin/tensorflow_io_plugin_gs build
126+
cp -r bazel-bin/tensorflow_io_gcs_filesystem build
127127
- uses: actions/upload-artifact@v2
128128
with:
129129
name: ${{ runner.os }}-bazel-bin
130130
path: |
131131
build/tensorflow_io
132-
build/tensorflow_io_plugin_gs
132+
build/tensorflow_io_gcs_filesystem
133133
134134
macos-wheel:
135135
name: Wheel ${{ matrix.python }} macOS
@@ -153,7 +153,7 @@ jobs:
153153
python -m pip install -U wheel setuptools
154154
python --version
155155
python setup.py --project tensorflow-io --data bazel-bin -q bdist_wheel --plat-name macosx_10_14_x86_64
156-
python setup.py --project tensorflow-io-plugin-gs --data bazel-bin -q bdist_wheel --plat-name macosx_10_14_x86_64
156+
python setup.py --project tensorflow-io-gcs-filesystem --data bazel-bin -q bdist_wheel --plat-name macosx_10_14_x86_64
157157
- name: Auditwheel ${{ matrix.python }} macOS
158158
run: |
159159
set -x -e
@@ -201,7 +201,7 @@ jobs:
201201
set -x -e
202202
python --version
203203
df -h
204-
(cd wheelhouse && python -m pip install tensorflow_io_plugin_gs-*.whl)
204+
(cd wheelhouse && python -m pip install tensorflow_io_gcs_filesystem-*.whl)
205205
(cd wheelhouse && python -m pip install tensorflow_io-*.whl)
206206
- name: Test ${{ matrix.python }} macOS
207207
run: |
@@ -232,14 +232,14 @@ jobs:
232232
gcr.io/tensorflow-testing/nosla-ubuntu16.04-manylinux2010@sha256:3a9b4820021801b1fa7d0592c1738483ac7abc209fc6ee8c9ef06cf2eab2d170 /v/.github/workflows/build.bazel.sh
233233
sudo chown -R $(id -nu):$(id -ng) .
234234
sudo find build/tensorflow_io -name '*runfiles*' | sudo xargs rm -rf
235-
sudo find build/tensorflow_io_plugin_gs -name '*runfiles*' | sudo xargs rm -rf
235+
sudo find build/tensorflow_io_gcs_filesystem -name '*runfiles*' | sudo xargs rm -rf
236236
sudo cp .bazelrc build/tensorflow_io/
237237
- uses: actions/upload-artifact@v2
238238
with:
239239
name: ${{ runner.os }}-bazel-bin
240240
path: |
241241
build/tensorflow_io
242-
build/tensorflow_io_plugin_gs
242+
build/tensorflow_io_gcs_filesystem
243243
244244
linux-wheel:
245245
name: Wheel ${{ matrix.python }} Linux
@@ -259,7 +259,7 @@ jobs:
259259
set -x -e
260260
mv bazel-bin/tensorflow_io/.bazelrc .
261261
docker run -i --rm --user $(id -u):$(id -g) -v /etc/password:/etc/password -v $PWD:/v -w /v --net=host python:${{ matrix.python }}-slim python setup.py --project tensorflow-io --data bazel-bin -q bdist_wheel
262-
docker run -i --rm --user $(id -u):$(id -g) -v /etc/password:/etc/password -v $PWD:/v -w /v --net=host python:${{ matrix.python }}-slim python setup.py --project tensorflow-io-plugin-gs --data bazel-bin -q bdist_wheel
262+
docker run -i --rm --user $(id -u):$(id -g) -v /etc/password:/etc/password -v $PWD:/v -w /v --net=host python:${{ matrix.python }}-slim python setup.py --project tensorflow-io-gcs-filesystem --data bazel-bin -q bdist_wheel
263263
- name: Auditwheel ${{ matrix.python }} Linux
264264
run: |
265265
set -x -e
@@ -348,16 +348,16 @@ jobs:
348348
python3 setup.py --install-require | xargs python3 -m pip install
349349
python3 tools/build/configure.py
350350
cat .bazelrc
351-
bazel build -s --verbose_failures %BAZEL_OPTIMIZATION% //tensorflow_io/core:python/ops/libtensorflow_io.so //tensorflow_io/core:python/ops/libtensorflow_io_plugins.so //tensorflow_io_plugin_gs/...
351+
bazel build -s --verbose_failures %BAZEL_OPTIMIZATION% //tensorflow_io/core:python/ops/libtensorflow_io.so //tensorflow_io/core:python/ops/libtensorflow_io_plugins.so //tensorflow_io_gcs_filesystem/...
352352
mkdir build
353353
cp -r bazel-bin/tensorflow_io build
354-
cp -r bazel-bin/tensorflow_io_plugin_gs build
354+
cp -r bazel-bin/tensorflow_io_gcs_filesystem build
355355
- uses: actions/upload-artifact@v2
356356
with:
357357
name: ${{ runner.os }}-bazel-bin
358358
path: |
359359
build/tensorflow_io
360-
build/tensorflow_io_plugin_gs
360+
build/tensorflow_io_gcs_filesystem
361361
362362
windows-wheel:
363363
name: Wheel ${{ matrix.python }} Windows
@@ -382,7 +382,7 @@ jobs:
382382
python --version
383383
python -m pip install -U wheel setuptools
384384
python setup.py --project tensorflow-io --data bazel-bin -q bdist_wheel
385-
python setup.py --project tensorflow-io-plugin-gs --data bazel-bin -q bdist_wheel
385+
python setup.py --project tensorflow-io-gcs-filesystem --data bazel-bin -q bdist_wheel
386386
ls -la dist
387387
- uses: actions/upload-artifact@v2
388388
with:
@@ -418,15 +418,15 @@ jobs:
418418
run: |
419419
@echo on
420420
python --version
421-
(cd wheel && ls tensorflow_io_plugin_gs-*.whl | xargs python -m pip install && cd ..)
421+
(cd wheel && ls tensorflow_io_gcs_filesystem-*.whl | xargs python -m pip install && cd ..)
422422
(cd wheel && ls tensorflow_io-*.whl | xargs python -m pip install && cd ..)
423423
- name: Test ${{ matrix.python }} Windows
424424
shell: cmd
425425
run: |
426426
@echo on
427427
python --version
428428
python -m pip install -U pytest-benchmark
429-
rm -rf tensorflow_io tensorflow_io_plugin_gs
429+
rm -rf tensorflow_io tensorflow_io_gcs_filesystem
430430
(cd tests && python -m pytest -s -v test_lmdb.py)
431431
(python -m pytest -s -v test_image.py -k "webp or ppm or bmp or bounding or exif or hdr or openexr or tiff or avif")
432432
(python -m pytest -s -v test_serialization.py)
@@ -576,7 +576,7 @@ jobs:
576576
python -m pip install -U wheel setuptools
577577
python --version
578578
python setup.py --project tensorflow-io --data bazel-bin -q bdist_wheel --plat-name macosx_10_14_x86_64 --nightly $BUILD_NUMBER
579-
python setup.py --project tensorflow-io-plugin-gs --data bazel-bin -q bdist_wheel --plat-name macosx_10_14_x86_64 --nightly $BUILD_NUMBER
579+
python setup.py --project tensorflow-io-gcs-filesystem --data bazel-bin -q bdist_wheel --plat-name macosx_10_14_x86_64 --nightly $BUILD_NUMBER
580580
- name: Auditwheel ${{ matrix.python }} macOS
581581
run: |
582582
set -x -e
@@ -616,7 +616,7 @@ jobs:
616616
set -x -e
617617
mv bazel-bin/tensorflow_io/.bazelrc .
618618
docker run -i --rm --user $(id -u):$(id -g) -v /etc/password:/etc/password -v $PWD:/v -w /v --net=host python:${{ matrix.python }}-slim python setup.py --project tensorflow-io --data bazel-bin -q bdist_wheel --nightly $BUILD_NUMBER
619-
docker run -i --rm --user $(id -u):$(id -g) -v /etc/password:/etc/password -v $PWD:/v -w /v --net=host python:${{ matrix.python }}-slim python setup.py --project tensorflow-io-plugin-gs --data bazel-bin -q bdist_wheel --nightly $BUILD_NUMBER
619+
docker run -i --rm --user $(id -u):$(id -g) -v /etc/password:/etc/password -v $PWD:/v -w /v --net=host python:${{ matrix.python }}-slim python setup.py --project tensorflow-io-gcs-filesystem --data bazel-bin -q bdist_wheel --nightly $BUILD_NUMBER
620620
- name: Auditwheel ${{ matrix.python }} Linux
621621
run: |
622622
set -x -e
@@ -660,7 +660,7 @@ jobs:
660660
python --version
661661
python -m pip install -U wheel setuptools
662662
python setup.py --project tensorflow-io --data bazel-bin -q bdist_wheel --nightly %BUILD_NUMBER%
663-
python setup.py --project tensorflow-io-plugin-gs --data bazel-bin -q bdist_wheel --nightly %BUILD_NUMBER%
663+
python setup.py --project tensorflow-io-gcs-filesystem --data bazel-bin -q bdist_wheel --nightly %BUILD_NUMBER%
664664
ls -la dist
665665
- uses: actions/upload-artifact@v2
666666
with:
@@ -746,24 +746,24 @@ jobs:
746746
set -e -x
747747
rm -rf dist
748748
mkdir -p dist
749-
cp macOS-3.6-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
750-
cp macOS-3.7-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
751-
cp macOS-3.8-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
752-
cp macOS-3.9-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
753-
cp Linux-3.6-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
754-
cp Linux-3.7-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
755-
cp Linux-3.8-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
756-
cp Linux-3.9-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
757-
cp Windows-3.6-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
758-
cp Windows-3.7-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
759-
cp Windows-3.8-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
760-
cp Windows-3.9-nightly/tensorflow_io_plugin_gs_nightly*.whl dist/
749+
cp macOS-3.6-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
750+
cp macOS-3.7-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
751+
cp macOS-3.8-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
752+
cp macOS-3.9-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
753+
cp Linux-3.6-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
754+
cp Linux-3.7-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
755+
cp Linux-3.8-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
756+
cp Linux-3.9-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
757+
cp Windows-3.6-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
758+
cp Windows-3.7-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
759+
cp Windows-3.8-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
760+
cp Windows-3.9-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
761761
ls -la dist/
762762
sha256sum dist/*.whl
763763
- uses: pypa/gh-action-pypi-publish@master
764764
with:
765765
user: __token__
766-
password: ${{ secrets.tensorflow_io_plugin_gs_nightly }}
766+
password: ${{ secrets.tensorflow_io_gcs_filesystem_nightly }}
767767

768768
docker-nightly:
769769
name: Docker Nightly

docs/development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ sudo ./configure.sh
8282
# export BAZEL_OPTIMIZATION=
8383

8484
# Build shared libraries
85-
bazel build -s --verbose_failures $BAZEL_OPTIMIZATION //tensorflow_io/... //tensorflow_io_plugin_gs/...
85+
bazel build -s --verbose_failures $BAZEL_OPTIMIZATION //tensorflow_io/... //tensorflow_io_gcs_filesystem/...
8686

8787
# Once build is complete, shared libraries will be available in
8888
# `bazel-bin/tensorflow_io/core/python/ops/` and it is possible
@@ -141,7 +141,7 @@ sudo ./configure.sh
141141
# export BAZEL_OPTIMIZATION=
142142

143143
# Build shared libraries
144-
bazel build -s --verbose_failures $BAZEL_OPTIMIZATION //tensorflow_io/... //tensorflow_io_plugin_gs/...
144+
bazel build -s --verbose_failures $BAZEL_OPTIMIZATION //tensorflow_io/... //tensorflow_io_gcs_filesystem/...
145145

146146
# Once build is complete, shared libraries will be available in
147147
# `bazel-bin/tensorflow_io/core/python/ops/` and it is possible

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
print(require)
4343
sys.exit(0)
4444

45-
subpackages = ["tensorflow-io-plugin-gs"]
45+
subpackages = ["tensorflow-io-gcs-filesystem"]
4646

4747
assert "--project" in sys.argv, "--project ({} or {}) must be provided".format(
4848
"tensorflow-io", ", ".join(subpackages)

tensorflow_io_plugin_gs/__init__.py renamed to tensorflow_io_gcs_filesystem/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
# ==============================================================================
15-
"""tensorflow_io_plugin_gs"""
15+
"""tensorflow_io_gcs_filesystem"""
1616

17-
from tensorflow_io_plugin_gs.core.python.ops import plugin_gs
17+
from tensorflow_io_gcs_filesystem.core.python.ops import plugin_gs

tensorflow_io_plugin_gs/core/BUILD renamed to tensorflow_io_gcs_filesystem/core/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ cc_library(
3535
)
3636

3737
cc_binary(
38-
name = "python/ops/libtensorflow_io_plugin_gs.so",
38+
name = "python/ops/libtensorflow_io_gcs_filesystem.so",
3939
copts = tf_io_copts(),
4040
linkshared = 1,
4141
deps = [
42-
"//tensorflow_io_plugin_gs/core:gs",
42+
"//tensorflow_io_gcs_filesystem/core:gs",
4343
],
4444
)

tensorflow_io_plugin_gs/core/file_system_plugin_gs.cc renamed to tensorflow_io_gcs_filesystem/core/file_system_plugin_gs.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#include "tensorflow_io_plugin_gs/core/file_system_plugin_gs.h"
16+
#include "tensorflow_io_gcs_filesystem/core/file_system_plugin_gs.h"
1717

1818
#include "absl/strings/ascii.h"
1919

tensorflow_io_plugin_gs/core/gcs_filesystem.cc renamed to tensorflow_io_gcs_filesystem/core/gcs_filesystem.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ limitations under the License.
2222
#include "google/cloud/storage/client.h"
2323
#include "tensorflow/c/logging.h"
2424
#include "tensorflow/c/tf_status.h"
25-
#include "tensorflow_io_plugin_gs/core/expiring_lru_cache.h"
26-
#include "tensorflow_io_plugin_gs/core/file_system_plugin_gs.h"
27-
#include "tensorflow_io_plugin_gs/core/gcs_helper.h"
28-
#include "tensorflow_io_plugin_gs/core/ram_file_block_cache.h"
25+
#include "tensorflow_io_gcs_filesystem/core/expiring_lru_cache.h"
26+
#include "tensorflow_io_gcs_filesystem/core/file_system_plugin_gs.h"
27+
#include "tensorflow_io_gcs_filesystem/core/gcs_helper.h"
28+
#include "tensorflow_io_gcs_filesystem/core/ram_file_block_cache.h"
2929

3030
namespace tensorflow {
3131
namespace io {

0 commit comments

Comments
 (0)