-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into issue_147
- Loading branch information
Showing
5 changed files
with
31 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
types: [published] | ||
branches: | ||
- master | ||
- dev_bjorn | ||
jobs: | ||
build: | ||
name: Build | ||
|
@@ -53,13 +54,9 @@ jobs: | |
shell: bash -l {0} | ||
run: git describe --tags | ||
|
||
- name: 🔩 Build pypi wheel package | ||
shell: bash -l {0} | ||
run: poetry build | ||
|
||
- name: 🔼 Publish a Python distribution to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
- name: Build and publish to pypi | ||
uses: JRubics/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYDNA_PYPI_TOKEN }} | ||
skip_existing: true | ||
pypi_token: ${{ secrets.PYPI_TOKEN }} | ||
repository_name: "testpypi" | ||
repository_url: "https://test.pypi.org/legacy/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,35 +11,35 @@ classifiers=["Development Status :: 4 - Beta", | |
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Education", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", ] | ||
[project.urls] | ||
homepage = "https://github.com/BjornFJohansson/pydna#-pydna" | ||
documentation = "https://pydna.readthedocs.io/?badge=latest" | ||
repository = "https://github.com/BjornFJohansson/pydna/tree/dev_bjorn" | ||
changelog = "https://github.com/BjornFJohansson/pydna/blob/master/docs/CHANGELOG.md#changelog" | ||
[tool.poetry.urls] | ||
Changelog = "https://github.com/BjornFJohansson/pydna/blob/master/docs/CHANGELOG.md#changelog" | ||
[tool.poetry] | ||
name = "pydna" | ||
version = "5.2.0-a.15" | ||
description = "Representing double stranded DNA and functions for simulating cloning and homologous recombination between DNA molecules." | ||
authors = ["BjornFJohansson <[email protected]>"] | ||
license = "BSD" | ||
readme = "README.md" | ||
homepage = "https://github.com/BjornFJohansson/pydna#-pydna" | ||
documentation = "https://pydna.readthedocs.io/?badge=latest" | ||
repository = "https://github.com/BjornFJohansson/pydna/tree/dev_bjorn" | ||
[tool.poetry.dependencies] | ||
python = ">=3.8" | ||
appdirs = ">=1.4.4" | ||
biopython = ">=1.80" | ||
networkx = ">=2.8.8" | ||
pydivsufsort = ">=0.0.11" | ||
prettytable = ">=3.5.0" | ||
pyfiglet = ">=0.8.post1" | ||
pyfiglet = "0.8.post1" | ||
pyperclip = { version = ">=1.8.2", optional = true } | ||
scipy = { version = ">=1.8.0", optional = true } | ||
scipy = { version = ">=1.9.3", optional = true } | ||
matplotlib = { version = ">=3.4.3", optional = true } | ||
pillow = { version = ">=8.4.0", optional = true } | ||
pyparsing = { version = ">=2.4.7", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters