Skip to content

Commit

Permalink
master > main (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathurinm committed Jan 4, 2022
1 parent 95f4b0f commit 0d363e2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
echo "Merging $(cat merge.txt)";
git remote add upstream git://github.com/lcsl/iterreg.git;
git pull --ff-only upstream "refs/pull/$(cat merge.txt)/merge";
git fetch upstream master;
git fetch upstream main;
fi
# If both keys are in the same command only one is restored
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
- run:
name: deploy
command: |
if [[ ${CIRCLE_BRANCH} == "master" ]]; then
if [[ ${CIRCLE_BRANCH} == "main" ]]; then
set -e
mkdir -p ~/.ssh
echo -e "Host *\nStrictHostKeyChecking no" > ~/.ssh/config
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: build
on:
push:
branches:
- 'master'
- 'main'
pull_request:
branches:
- master
- main

jobs:
build-linux:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: linter
on:
create:
branches:
- 'master'
- 'main'
tags:
- '**'
pull_request:
branches:
- master
- main

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ ArXiv links:

.. |image0| image:: https://github.com/LCSL/iterreg/workflows/build/badge.svg
:target: https://github.com/LCSL/iterreg/actions?query=workflow%3Abuild
.. |image1| image:: https://codecov.io/gh/LCSL/iterreg/branch/master/graphs/badge.svg?branch=master
.. |image1| image:: https://codecov.io/gh/LCSL/iterreg/branch/main/graphs/badge.svg?branch=main
:target: https://codecov.io/gh/LCSL/iterreg
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
install_requires=[
"matplotlib", "numba", "numpy", "scipy",
"celer @ https://github.com/mathurinm/celer/archive/master.zip"],
"matplotlib", "numba", "numpy", "scipy", "celer>=0.6.1"],
download_url=DOWNLOAD_URL,
packages=find_packages(),
)

0 comments on commit 0d363e2

Please sign in to comment.