Skip to content

Commit e013e1a

Browse files
authored
Merge branch 'main' into add_installation_doc
2 parents 1ad182b + 53357f7 commit e013e1a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/Pre-commit-hooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v3
2424
#setting up Python v3.0.0
25-
- uses: actions/setup-python@v3.0.0
25+
- uses: actions/setup-python@v4.2.0
2626
with:
2727
python-version: '3.9'
2828
#using pre-commit latest i.e v2.0.3

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
mkdir ~/blob_emulator
7676
azurite -l ~/blob_emulator --debug debug.log 2>&1 > stdouterr.log &
7777
pytest --cov=zarr --cov-config=.coveragerc --doctest-plus --cov-report xml --cov=./ --timeout=300
78-
- uses: codecov/codecov-action@v1
78+
- uses: codecov/codecov-action@v3
7979
with:
8080
#token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
8181
#files: ./coverage1.xml,./coverage2.xml # optional

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
submodules: true
1717
fetch-depth: 0
1818

19-
- uses: actions/setup-python@v4
19+
- uses: actions/setup-python@v4.2.0
2020
name: Install Python
2121
with:
2222
python-version: '3.8'

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2018 Zarr Developers <https://github.com/zarr-developers>
3+
Copyright (c) 2015-2022 Zarr Developers <https://github.com/zarr-developers>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
# General information about the project.
6969
project = 'zarr'
70-
copyright = '2018, Zarr Developers'
70+
copyright = '2022, Zarr Developers'
7171
author = 'Zarr Developers'
7272

7373
version = zarr.__version__

docs/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ The Zarr source code is hosted on GitHub at the following location:
7575
You will need your own fork to work on the code. Go to the link above and hit
7676
the "Fork" button. Then clone your fork to your local machine::
7777

78-
$ git clone [email protected]:your-user-name/zarr.git
79-
$ cd zarr
78+
$ git clone [email protected]:your-user-name/zarr-python.git
79+
$ cd zarr-python
8080
$ git remote add upstream [email protected]:zarr-developers/zarr-python.git
8181

8282
Creating a development environment

0 commit comments

Comments
 (0)