Skip to content

Commit

Permalink
Fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
jinningwang committed Aug 22, 2024
2 parents 4fb5bcc + 1ff79a2 commit 0536238
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}
password: ${{ secrets.PYPI_PASSWORD }}
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ RUN git clone https://github.com/CURENT/dime.git && \
rm -rf dime \
&& rm -rf /tmp/dime

RUN git clone --single-branch --branch unittesting https://github.com/CURENT/agvis.git && \

RUN git clone --single-branch --branch master https://github.com/CURENT/agvis.git && \
cd agvis && \
python3 -m pip install -e . && \
cd ..
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def get_extra_requires(filename, add_all=True):
description="Web application of geographical visualizer for energy systems",
long_description=readme,
long_description_content_type='text/markdown',
author="Nicholas West, Nicholas Parsly, Jinning Wang",
author="Zack Malkmus, Nicholas West, Nicholas Parsly, Jinning Wang",
author_email='[email protected]',
url='https://github.com/CURENT/agvis',
packages=find_packages(exclude=[]),
Expand All @@ -93,6 +93,7 @@ def get_extra_requires(filename, add_all=True):
# 'path/to/data_file',
]
},
use_scm_version=True,
install_requires=parse_requires('requirements.txt'),
extras_require=extras_require,
license="GNU Public License v3",
Expand Down

0 comments on commit 0536238

Please sign in to comment.