Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use pytoolconfig for configuration #473

Merged
merged 35 commits into from
Jun 17, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a66ba90
use pytoolconfig for configuration
bagel897 May 13, 2022
d26765e
migrate from setup.py to pyproject.toml
bagel897 May 3, 2022
79bbec6
remove pydantic dependency
bagel897 May 21, 2022
1046994
use read the docs and sphinx
bagel897 May 22, 2022
48c255b
add universal keys
bagel897 May 22, 2022
0f2964b
drop python2 support
bagel897 May 22, 2022
f8bab12
use pyupgrade to bump to python 3.7
bagel897 May 22, 2022
63f041d
drop python 3.6 support
bagel897 May 22, 2022
9c13ee6
fix dependency specifier
bagel897 May 22, 2022
ca4fb28
blacken
bagel897 May 22, 2022
ec2d323
merge prefs with dataclass
bagel897 May 24, 2022
1eaa5c0
Merge branch 'master' into toml
lieryan May 24, 2022
b84c46a
use rtd theme
bagel897 May 28, 2022
2bc1996
fix: typos, whitespace, defaults
bagel897 May 28, 2022
a57a27c
put all documentation and keys in prefs
bagel897 May 28, 2022
e1132c6
remove default config
bagel897 May 28, 2022
ff8f984
remove old config file
bagel897 May 28, 2022
7cf96e1
bump version, work on spacing issues
bagel897 May 28, 2022
4246efd
Merge branch 'master' of https://github.com/python-rope/rope into toml
bagel897 May 28, 2022
0753cc0
Update changelog
bagel897 May 28, 2022
02d47ec
Merge branch 'master' of https://github.com/python-rope/rope into toml
bagel897 Jun 4, 2022
10b5456
Merge branch 'master' into toml
lieryan Jun 7, 2022
f7dd7ec
Fix incorrect merge conflict resolution
lieryan Jun 7, 2022
be47cb5
Merge branch 'master' into toml
lieryan Jun 14, 2022
75fd6cd
Fix whitespace
lieryan Jun 8, 2022
e10caf6
Update CHANGELOG.md
lieryan Jun 14, 2022
d64369e
Merge branch 'master' into toml
lieryan Jun 14, 2022
8b97718
Merge branch 'master' into toml
lieryan Jun 14, 2022
58faa9f
Merge branch 'master' into toml
lieryan Jun 14, 2022
2f0d893
Fix typo preform_doa->perform_doa
lieryan Jun 14, 2022
9370185
Restore default_config.py
lieryan Jun 14, 2022
8e4f9d3
Change the default config.py to only document
lieryan Jun 14, 2022
f53c360
fix: use lambda and remove extra pass
bagel897 Jun 15, 2022
a7cc890
docs: link default_config.py
bagel897 Jun 15, 2022
992841f
Merge branch 'master' into toml
lieryan Jun 17, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 0 additions & 29 deletions CONFIGURATION.md

This file was deleted.

3 changes: 0 additions & 3 deletions gen_docs.py

This file was deleted.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
'Topic :: Software Development',
]
dynamic = ['version']
dependencies = ['pytoolconfig', "pydantic"]
dependencies = ['pytoolconfig > 1.0.0']

[[project.authors]]
name = 'Ali Gholami Rudi'
Expand All @@ -39,6 +39,7 @@ dev = [
'pytest>=7.0.1',
'pytest-timeout>=2.1.0',
'build>=0.7.0',
'pytoolconfig[doc]'
]
[tool.setuptools]
packages = [
Expand Down