Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
sudo apt-get install -y nvidia-cuda-toolkit clinfo

- name: Checkout repo
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3.5.2

# https://github.com/marketplace/actions/setup-miniconda
- name: Setup miniconda
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
if: |
!github.event.pull_request.head.repo.fork &&
(github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true) || github.event_name == 'push' && contains(github.ref, 'refs/tags/'))
uses: peaceiris/actions-gh-pages@v3.9.2
uses: peaceiris/actions-gh-pages@v3.9.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: doc/_build/html/
8 changes: 4 additions & 4 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
access_token: ${{ github.token }}

- name: Checkout DPNP repo
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3.5.2
with:
fetch-depth: 0

Expand All @@ -76,7 +76,7 @@ jobs:
run: conda install conda-build

- name: Cache conda packages
uses: actions/cache@v3.2.6
uses: actions/cache@v3.3.0
env:
CACHE_NUMBER: 1 # Increase to reset cache
with:
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}'

- name: Cache conda packages
uses: actions/cache@v3.2.6
uses: actions/cache@v3.3.0
env:
CACHE_NUMBER: 1 # Increase to reset cache
with:
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
run: more lockfile

- name: Cache conda packages
uses: actions/cache@v3.2.6
uses: actions/cache@v3.3.0
env:
CACHE_NUMBER: 1 # Increase to reset cache
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate_coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
access_token: ${{ github.token }}

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v3.5.2
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/setup-python@v4.5.0
- uses: actions/checkout@v3.5.2
- uses: actions/setup-python@v4.6.1
with:
python-version: '3.10'
- uses: pre-commit/action@v3.0.0
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# The short X.Y version
version = '0.11'
# The full version, including alpha/beta/rc tags
release = '0.11.1'
release = '0.11.2dev1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion dpnp/backend/doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "DPNP C++ backend kernel library"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.11.1
PROJECT_NUMBER = 0.11.2dev1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion dpnp/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
DPNP version module
"""

__version__: str = '0.11.1'
__version__: str = '0.11.2dev1'

version: str = __version__