diff --git a/.github/workflows/cd-build.yml b/.github/workflows/cd-build.yml index bef08c1e..eaac77c3 100644 --- a/.github/workflows/cd-build.yml +++ b/.github/workflows/cd-build.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 diff --git a/.github/workflows/check-docs.yml b/.github/workflows/check-docs.yml index 8c61379d..4e45cc40 100644 --- a/.github/workflows/check-docs.yml +++ b/.github/workflows/check-docs.yml @@ -29,10 +29,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: "3.10" - name: Check Python Version run: python --version diff --git a/pysap/info.py b/pysap/info.py index 3f3b025e..0bb55a6c 100644 --- a/pysap/info.py +++ b/pysap/info.py @@ -9,8 +9,8 @@ # Module current version version_major = 0 -version_minor = 0 -version_micro = 6 +version_minor = 1 +version_micro = 0 # Expected by setup.py: string of form "X.Y.Z" __version__ = '{0}.{1}.{2}'.format(version_major, version_minor, version_micro)