File tree Expand file tree Collapse file tree 7 files changed +41
-37
lines changed Expand file tree Collapse file tree 7 files changed +41
-37
lines changed Original file line number Diff line number Diff line change 24
24
25
25
- name : Install Python dependencies
26
26
run : |
27
- python -m pip install --upgrade pip setuptools wheel
27
+ python -m pip install --upgrade pip
28
28
python -m pip install --upgrade mypy
29
29
30
30
- name : Install cycler
Original file line number Diff line number Diff line change 30
30
31
31
- name : Install Python dependencies
32
32
run : |
33
- python -m pip install --upgrade pip setuptools wheel
33
+ python -m pip install --upgrade pip
34
34
python -m pip install --upgrade pytest pytest-cov pytest-xdist
35
35
36
36
- name : Install cycler
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 65
65
# |version| and |release|, also used in various other places throughout the
66
66
# built documents.
67
67
#
68
- # The short X.Y version.
69
- version = '0.12.0'
70
68
# The full version, including alpha/beta/rc tags.
71
- release = '0.12.0.dev0'
69
+ from cycler import __version__ as release # noqa
70
+ # The short X.Y version.
71
+ version = '.' .join (release .split ('.' )[:2 ])
72
72
73
73
# The language for content autogenerated by Sphinx. Refer to documentation
74
74
# for a list of supported languages.
Original file line number Diff line number Diff line change
1
+ [project ]
2
+ name = " cycler"
3
+ dynamic = [" version" ]
4
+ description = " Composable style cycles"
5
+ authors = [
6
+ {
name =
" Thomas A Caswell" ,
email =
" [email protected] " },
7
+ ]
8
+ readme = " README.rst"
9
+ license = {file = " LICENSE" }
10
+ requires-python = " >=3.7"
11
+ classifiers = [
12
+ " License :: OSI Approved :: BSD License" ,
13
+ " Development Status :: 4 - Beta" ,
14
+ " Programming Language :: Python :: 3" ,
15
+ " Programming Language :: Python :: 3.7" ,
16
+ " Programming Language :: Python :: 3.8" ,
17
+ " Programming Language :: Python :: 3.9" ,
18
+ " Programming Language :: Python :: 3.10" ,
19
+ " Programming Language :: Python :: 3.11" ,
20
+ " Programming Language :: Python :: 3 :: Only" ,
21
+ ]
22
+ keywords = [" cycle kwargs" ]
23
+
24
+ [project .urls ]
25
+ homepage = " https://matplotlib.org/cycler/"
26
+ repository = " https://github.com/matplotlib/cycler"
27
+
28
+ [tool .setuptools ]
29
+ packages = [" cycler" ]
30
+
31
+ [tool .setuptools .dynamic ]
32
+ version = {attr = " cycler.__version__" }
33
+
34
+ [build-system ]
35
+ requires = [" setuptools>=61" ]
36
+ build-backend = " setuptools.build_meta"
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments