Skip to content

Commit a929dc3

Browse files
authored
Merge pull request #1755 from cuthbertLab/9.6beta
Start 9.6 beta - update requirements.dev
2 parents ff16dc2 + 009af68 commit a929dc3

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

dist/dist.py

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -93,25 +93,22 @@
9393
9494
[pypi]
9595
username:__token__
96-
password:pypi-the_gibberish_generated_in_create_api_token_at_the_bottom_of_account_settings
96+
password:pypi-API_TOKEN
9797
98-
The "password" is under "Account Settings" -> "API Token" -> "Options" -> "View Unique
99-
Identifier" -- the Copy button doesn't work at least on Mac.
100-
(or you can use the "password" field in the [pypi] section, but that's not recommended)')
98+
The "password" is the API token you've just created -- if you lose the file you
99+
will also lose the API token. and have to create it again. This is all very
100+
poorly documented. This is Not the "Unique identifier" that you see in the
101+
"API Tokens" tab on the "Your Account" page -- super confusing.
101102
102-
FYI -- PyPI is apparently uninterested in having contributions from smaller projects
103-
which haven't been following their internal security discussions for years. All of this
104-
is super mysterious and not well documented. sigh. But they did mail out USB sticks to
105-
the top 1% of projects in Python!
103+
20. Delete the two .tar.gz files and .whl file in dist. (and the docs)
106104
107-
20. Delete the two .tar.gz files and .whl file in dist.
108-
109-
21. For starting a new major release create a GitHub branch for the old one.
105+
21. For starting a new major release create a GitHub branch to preserve the old one
106+
for patches, etc. esp. during beta releases.
110107
111108
22. Immediately increment the number in _version.py and run tests on it here
112109
to prepare for next release.
113110
114-
23. Announce on the blog, to the list, and twitter.
111+
23. Announce on the blog and to the list.
115112
'''
116113
import os
117114
import shutil

music21/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
'''
4848
from __future__ import annotations
4949

50-
__version__ = '9.5.0'
50+
__version__ = '9.6.0b1'
5151

5252
def get_version_tuple(vv):
5353
v = vv.split('.')

music21/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<class 'music21.base.Music21Object'>
2828
2929
>>> music21.VERSION_STR
30-
'9.5.0'
30+
'9.6.0b1'
3131
3232
Alternatively, after doing a complete import, these classes are available
3333
under the module "base":

requirements_dev.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
-r requirements.txt
22
wheel
3-
astroid>=3.2.0
4-
pylint>=2.16.0
3+
pylint>=3.2.0
54
flake8<7.0.0
65
flake8-quotes>=3.3.2
76
hatchling
@@ -17,3 +16,5 @@ nbval
1716
pytest
1817
docutils
1918
types-requests
19+
twine
20+
hatch

0 commit comments

Comments
 (0)