Skip to content

Commit 1af13f2

Browse files
authored
Prepare for v0.8.0 release (#116)
1 parent d59e689 commit 1af13f2

File tree

5 files changed

+68
-34
lines changed

5 files changed

+68
-34
lines changed

HISTORY.rst

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
History
33
=======
44

5+
0.8.0_ (2022-07-21)
6+
-------------------
7+
8+
* Upgrade to using `pyparsing`>=3.0
9+
10+
511
0.7.0_ (2020-08-31)
612
-------------------
713

@@ -100,7 +106,8 @@ History
100106
* First release on PyPI.
101107

102108

103-
.. _Unreleased: https://github.com/dev-cafe/parselglossy/compare/v0.7.0...HEAD
109+
.. _Unreleased: https://github.com/dev-cafe/parselglossy/compare/v0.8.0...HEAD
110+
.. _0.8.0: https://github.com/dev-cafe/parselglossy/releases/tag/v0.8.0
104111
.. _0.7.0: https://github.com/dev-cafe/parselglossy/releases/tag/v0.7.0
105112
.. _0.6.0: https://github.com/dev-cafe/parselglossy/releases/tag/v0.6.0
106113
.. _0.5.0: https://github.com/dev-cafe/parselglossy/releases/tag/v0.5.0

flake.lock

+43-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+13-15
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
flake = false;
99
};
1010
mach-nix = {
11-
url = "mach-nix/3.5.0";
12-
inputs.nixpkgs.follows = "nixpkgs";
13-
inputs.flake-utils.follows = "flake-utils";
11+
url = "mach-nix/3.4.0";
1412
inputs.pypi-deps-db.follows = "pypi-deps-db";
1513
};
1614
};
@@ -26,20 +24,20 @@
2624
pyyaml
2725
networkx
2826
coverage
29-
#hypothesis
30-
#pre-commit
27+
hypothesis
28+
pre-commit
3129
pytest
32-
#pytest-black
33-
#pytest-cov
34-
#pytest-flake8
35-
#pytest-mypy
36-
#pytest-sugar
37-
#black==22.3.0 # NOTE We pin black to avoid inconsistent formatting (and failing CI)
38-
#flake8
39-
#mypy
40-
#jupyterlab
30+
pytest-black
31+
pytest-cov
32+
pytest-flake8
33+
pytest-mypy
34+
pytest-sugar
35+
black==22.3.0 # NOTE We pin black to avoid inconsistent formatting (and failing CI)
36+
flake8
37+
mypy
38+
jupyterlab
4139
flit_core
42-
'';
40+
'' + builtins.readFile ./docs/requirements.txt;
4341
};
4442
in
4543
{

parselglossy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
__author__ = """Roberto Di Remigio, Radovan Bast"""
3333
__email__ = "[email protected]"
34-
__version__ = "0.7.0"
34+
__version__ = "0.8.0"
3535
__copyright__ = "Copyright 2019, dev-cafe"
3636
__credits__ = [
3737
"Jonas Juselius",

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
[bdist_wheel]
22
universal = 1
33

4+
[metadata]
5+
version = attr: parselglossy.__version__
6+
47
[flake8]
58
exclude =
69
.git,

0 commit comments

Comments
 (0)