Skip to content

Commit

Permalink
Merge pull request #13 from vsoch/license/update
Browse files Browse the repository at this point in the history
update license years
  • Loading branch information
vsoch committed Jan 21, 2023
2 parents df05a51 + 522109a commit dc7383e
Show file tree
Hide file tree
Showing 17 changed files with 45 additions and 45 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,35 @@ jobs:
generate-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: "gh-pages"
- uses: actions/checkout@v3
with:
ref: gh-pages

- name: Create environment
run: python -m venv env
- name: Create environment
run: python -m venv env

- name: Generate Docs
run: |
source env/bin/activate
python --version
root=$PWD
ls
cd /tmp
git clone https://github.com/vsoch/elfcall
cd elfcall
pip install -e .
cd docs
pip install -r requirements.txt
make html
mv $root/.git _build/html/.git
rm -rf $root
mv _build/html $root
cd $root
touch .nojekyll
ls
- name: Generate Docs
run: |
source env/bin/activate
python --version
root=$PWD
ls
cd /tmp
git clone https://github.com/vsoch/elfcall
cd elfcall
pip install -e .
cd docs
pip install -r requirements.txt
make html
mv $root/.git _build/html/.git
rm -rf $root
mv _build/html $root
cd $root
touch .nojekyll
ls
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages
folder: .
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@ba1486788b0490a235422264426c45848eac35c6 # v4.4.1
with:
branch: gh-pages
folder: .
2 changes: 1 addition & 1 deletion elfcall/client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python

__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"

import argparse
Expand Down
2 changes: 1 addition & 1 deletion elfcall/client/gen.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"


Expand Down
2 changes: 1 addition & 1 deletion elfcall/client/shell.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"


Expand Down
2 changes: 1 addition & 1 deletion elfcall/client/tree.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"


Expand Down
2 changes: 1 addition & 1 deletion elfcall/logger.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"

import inspect
Expand Down
2 changes: 1 addition & 1 deletion elfcall/main/client.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"

import os
Expand Down
2 changes: 1 addition & 1 deletion elfcall/main/elf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"

import elftools.elf.elffile
Expand Down
2 changes: 1 addition & 1 deletion elfcall/main/graph/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"


Expand Down
2 changes: 1 addition & 1 deletion elfcall/main/graph/cypher.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"


Expand Down
2 changes: 1 addition & 1 deletion elfcall/main/graph/dot.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"


Expand Down
2 changes: 1 addition & 1 deletion elfcall/main/graph/gexf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"


Expand Down
2 changes: 1 addition & 1 deletion elfcall/main/graph/text.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"


Expand Down
2 changes: 1 addition & 1 deletion elfcall/main/ld.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"

import os
Expand Down
2 changes: 1 addition & 1 deletion elfcall/utils/fileio.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"

import errno
Expand Down
2 changes: 1 addition & 1 deletion elfcall/utils/terminal.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"

import os
Expand Down
2 changes: 1 addition & 1 deletion elfcall/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vanessa Sochat"
__copyright__ = "Copyright 2022, Vanessa Sochat"
__copyright__ = "Copyright 2022-2023, Vanessa Sochat"
__license__ = "GPL-3.0"

__version__ = "0.0.16"
Expand Down

0 comments on commit dc7383e

Please sign in to comment.