@@ -138,7 +138,7 @@ jobs:
138138 runs-on : macOS-11
139139 strategy :
140140 matrix :
141- python : ['3.7', '3.8', '3.9', '3.10']
141+ python : ['3.7', '3.8', '3.9', '3.10', '3.11' ]
142142 steps :
143143 - uses : actions/checkout@v2
144144 - uses : actions/download-artifact@v1
@@ -252,7 +252,7 @@ jobs:
252252 runs-on : ubuntu-20.04
253253 strategy :
254254 matrix :
255- python : ['3.7', '3.8', '3.9', '3.10']
255+ python : ['3.7', '3.8', '3.9', '3.10', '3.11' ]
256256 steps :
257257 - uses : actions/checkout@v2
258258 - uses : actions/download-artifact@v1
@@ -365,7 +365,7 @@ jobs:
365365 runs-on : windows-latest
366366 strategy :
367367 matrix :
368- python : ['3.7', '3.8', '3.9', '3.10']
368+ python : ['3.7', '3.8', '3.9', '3.10', '3.11' ]
369369 steps :
370370 - uses : actions/checkout@v2
371371 - uses : actions/download-artifact@v1
@@ -468,6 +468,10 @@ jobs:
468468 with :
469469 name : macOS-3.10-wheel
470470 path : macOS-3.10-wheel
471+ - uses : actions/download-artifact@v1
472+ with :
473+ name : macOS-3.11-wheel
474+ path : macOS-3.11-wheel
471475 - uses : actions/download-artifact@v1
472476 with :
473477 name : Linux-3.7-wheel
@@ -484,6 +488,10 @@ jobs:
484488 with :
485489 name : Linux-3.10-wheel
486490 path : Linux-3.10-wheel
491+ - uses : actions/download-artifact@v1
492+ with :
493+ name : Linux-3.11-wheel
494+ path : Linux-3.11-wheel
487495 - uses : actions/download-artifact@v1
488496 with :
489497 name : Windows-3.7-wheel
@@ -500,21 +508,28 @@ jobs:
500508 with :
501509 name : Windows-3.10-wheel
502510 path : Windows-3.10-wheel
511+ - uses : actions/download-artifact@v1
512+ with :
513+ name : Windows-3.11-wheel
514+ path : Windows-3.11-wheel
503515 - run : |
504516 set -e -x
505517 mkdir -p wheelhouse
506518 cp macOS-3.7-wheel/*.whl wheelhouse/
507519 cp macOS-3.8-wheel/*.whl wheelhouse/
508520 cp macOS-3.9-wheel/*.whl wheelhouse/
509521 cp macOS-3.10-wheel/*.whl wheelhouse/
522+ cp macOS-3.11-wheel/*.whl wheelhouse/
510523 cp Linux-3.7-wheel/*.whl wheelhouse/
511524 cp Linux-3.8-wheel/*.whl wheelhouse/
512525 cp Linux-3.9-wheel/*.whl wheelhouse/
513526 cp Linux-3.10-wheel/*.whl wheelhouse/
527+ cp Linux-3.11-wheel/*.whl wheelhouse/
514528 cp Windows-3.7-wheel/*.whl wheelhouse/
515529 cp Windows-3.8-wheel/*.whl wheelhouse/
516530 cp Windows-3.9-wheel/*.whl wheelhouse/
517531 cp Windows-3.10-wheel/*.whl wheelhouse/
532+ cp Windows-3.11-wheel/*.whl wheelhouse/
518533 ls -la wheelhouse/
519534 sha256sum wheelhouse/*.whl
520535 - uses : actions/upload-artifact@v2
@@ -605,7 +620,7 @@ jobs:
605620 runs-on : macOS-11
606621 strategy :
607622 matrix :
608- python : ['3.7', '3.8', '3.9', '3.10']
623+ python : ['3.7', '3.8', '3.9', '3.10', '3.11' ]
609624 steps :
610625 - uses : actions/download-artifact@v1
611626 with :
@@ -652,7 +667,7 @@ jobs:
652667 runs-on : ubuntu-20.04
653668 strategy :
654669 matrix :
655- python : ['3.7', '3.8', '3.9', '3.10']
670+ python : ['3.7', '3.8', '3.9', '3.10', '3.11' ]
656671 steps :
657672 - uses : actions/download-artifact@v1
658673 with :
@@ -692,7 +707,7 @@ jobs:
692707 runs-on : windows-latest
693708 strategy :
694709 matrix :
695- python : ['3.7', '3.8', '3.9', '3.10']
710+ python : ['3.7', '3.8', '3.9', '3.10', '3.11' ]
696711 steps :
697712 - uses : actions/download-artifact@v1
698713 with :
@@ -744,6 +759,10 @@ jobs:
744759 with :
745760 name : macOS-3.10-nightly
746761 path : macOS-3.10-nightly
762+ - uses : actions/download-artifact@v1
763+ with :
764+ name : macOS-3.11-nightly
765+ path : macOS-3.11-nightly
747766 - uses : actions/download-artifact@v1
748767 with :
749768 name : Linux-3.7-nightly
@@ -760,6 +779,10 @@ jobs:
760779 with :
761780 name : Linux-3.10-nightly
762781 path : Linux-3.10-nightly
782+ - uses : actions/download-artifact@v1
783+ with :
784+ name : Linux-3.11-nightly
785+ path : Linux-3.11-nightly
763786 - uses : actions/download-artifact@v1
764787 with :
765788 name : Windows-3.7-nightly
@@ -776,21 +799,28 @@ jobs:
776799 with :
777800 name : Windows-3.10-nightly
778801 path : Windows-3.10-nightly
802+ - uses : actions/download-artifact@v1
803+ with :
804+ name : Windows-3.11-nightly
805+ path : Windows-3.11-nightly
779806 - run : |
780807 set -e -x
781808 mkdir -p dist
782809 cp macOS-3.7-nightly/tensorflow_io_nightly*.whl dist/
783810 cp macOS-3.8-nightly/tensorflow_io_nightly*.whl dist/
784811 cp macOS-3.9-nightly/tensorflow_io_nightly*.whl dist/
785812 cp macOS-3.10-nightly/tensorflow_io_nightly*.whl dist/
813+ cp macOS-3.11-nightly/tensorflow_io_nightly*.whl dist/
786814 cp Linux-3.7-nightly/tensorflow_io_nightly*.whl dist/
787815 cp Linux-3.8-nightly/tensorflow_io_nightly*.whl dist/
788816 cp Linux-3.9-nightly/tensorflow_io_nightly*.whl dist/
789817 cp Linux-3.10-nightly/tensorflow_io_nightly*.whl dist/
818+ cp Linux-3.11-nightly/tensorflow_io_nightly*.whl dist/
790819 cp Windows-3.7-nightly/tensorflow_io_nightly*.whl dist/
791820 cp Windows-3.8-nightly/tensorflow_io_nightly*.whl dist/
792821 cp Windows-3.9-nightly/tensorflow_io_nightly*.whl dist/
793822 cp Windows-3.10-nightly/tensorflow_io_nightly*.whl dist/
823+ cp Windows-3.11-nightly/tensorflow_io_nightly*.whl dist/
794824 ls -la dist/
795825 sha256sum dist/*.whl
796826 - uses : pypa/gh-action-pypi-publish@master
@@ -805,14 +835,17 @@ jobs:
805835 cp macOS-3.8-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
806836 cp macOS-3.9-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
807837 cp macOS-3.10-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
838+ cp macOS-3.11-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
808839 cp Linux-3.7-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
809840 cp Linux-3.8-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
810841 cp Linux-3.9-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
811842 cp Linux-3.10-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
843+ cp Linux-3.11-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
812844 cp Windows-3.7-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
813845 cp Windows-3.8-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
814846 cp Windows-3.9-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
815847 cp Windows-3.10-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
848+ cp Windows-3.11-nightly/tensorflow_io_gcs_filesystem_nightly*.whl dist/
816849 ls -la dist/
817850 sha256sum dist/*.whl
818851 - uses : pypa/gh-action-pypi-publish@master
0 commit comments