diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 19444857a41..6e0a8e29239 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -4,7 +4,7 @@ on: types: [opened, synchronize, reopened] push: branches: - - release/0.0.5 + - release/0.1.0 jobs: @@ -26,7 +26,7 @@ jobs: run: | export PATH="/opt/python/${{ matrix.python_version[1] }}/bin:$PATH" python3 -mpip install wheel - BUILD_VERSION=0.0.5 python3 setup.py bdist_wheel + BUILD_VERSION=0.1.0 python3 setup.py bdist_wheel # NB: wheels have the linux_x86_64 tag so we rename to manylinux1 # find . -name 'dist/*whl' -exec bash -c ' mv $0 ${0/linux/manylinux1}' {} \; # pytorch/pytorch binaries are also manylinux_2_17 compliant but they @@ -66,7 +66,7 @@ jobs: run: | export CC=clang CXX=clang++ python3 -mpip install wheel - BUILD_VERSION=0.0.5 python3 setup.py bdist_wheel + BUILD_VERSION=0.1.0 python3 setup.py bdist_wheel - name: Upload wheel for the test-wheel job uses: actions/upload-artifact@v2 with: @@ -98,7 +98,7 @@ jobs: shell: bash run: | python3 -mpip install wheel - BUILD_VERSION=0.0.5 python3 setup.py bdist_wheel + BUILD_VERSION=0.1.0 python3 setup.py bdist_wheel - name: Upload wheel for the test-wheel job uses: actions/upload-artifact@v2 with: diff --git a/setup.py b/setup.py index 5fb678648c9..cd3a517b2cf 100644 --- a/setup.py +++ b/setup.py @@ -231,10 +231,13 @@ def _main(argv): }, zip_safe=False, classifiers=[ - "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", diff --git a/version.txt b/version.txt index bbdeab6222c..6e8bf73aa55 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.0.5 +0.1.0