Skip to content

Commit

Permalink
Release 0.6.3 (#103)
Browse files Browse the repository at this point in the history
* update vinecopulib

* update actions script (#102)

Co-authored-by: tnagler <[email protected]>

---------

Co-authored-by: tnagler <[email protected]>
  • Loading branch information
tnagler and tnagler authored Feb 20, 2023
1 parent 24900b6 commit 2483b69
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:

steps:
- name: Checkout project
uses: actions/checkout@v1
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Visual Studio Command Prompt tool
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
pip install pytest
pytest tests -r a
- name: Upload binaries
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v3
with:
name: dist
path: dist
Expand All @@ -81,11 +81,11 @@ jobs:

steps:
- name: Checkout project
uses: actions/checkout@v1
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -97,7 +97,7 @@ jobs:
run: |
python setup.py sdist
- name: Download binaries
uses: actions/download-artifact@master
uses: actions/download-artifact@v3
with:
name: dist
path: dist/
Expand All @@ -113,7 +113,7 @@ jobs:
job.status == 'success'
&& github.event_name == 'push'
&& github.ref == 'refs/heads/dev'
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.test_pypi_password }}
Expand All @@ -123,7 +123,7 @@ jobs:
job.status == 'success'
&& github.event_name == 'push'
&& startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright © 2019 Thomas Nagler and Thibault Vatter
Copyright © 2019-2023 Thomas Nagler and Thibault Vatter

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
Expand Down

0 comments on commit 2483b69

Please sign in to comment.