Skip to content

Commit

Permalink
extra packages are now separated. Version bumped to 0.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Obijuan committed Jun 26, 2021
1 parent 0c18980 commit 683d735
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# - Information for the Distribution package
# --------------------------------------------

VERSION = (0, 6, 6)
VERSION = (0, 6, 7)
__version__ = ".".join([str(s) for s in VERSION])

__title__ = "apio"
Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ requires = [
'pyserial>=3,<4',
'wheel>=0.35.0,<1'
]

[tool.flit.metadata.requires-extra]
extra = [
'blackiceprog>=2.0.0,<3.0.0',
'litterbox>=0.2.1,<0.3.0',
'tinyfpgab>=1.1.0,<1.2.0',
'tinyprog>=1.0.21,<1.1.0',
'icefunprog>=2.0.3,<3.0.0'
]
blackiceprog = ['blackiceprog>=2.0.0,<3.0.0']
litterbox = ['litterbox>=0.2.1,<0.3.0']
tinyfpgab = ['tinyfpgab>=1.1.0,<1.2.0']
tinyprog = ['tinyprog>=1.0.21,<1.1.0']
icefunprog = ['icefunprog>=2.0.3,<3.0.0']


[tool.flit.scripts]
apio = "apio.__main__:cli"
Expand Down

0 comments on commit 683d735

Please sign in to comment.