This repository was archived by the owner on Jul 17, 2024. It is now read-only.
File tree 5 files changed +6
-6
lines changed
timefold-solver-python-core/src/main/python/config
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ check out [_Timefold Solver Enterprise Edition_](https://timefold.ai/pricing).
19
19
20
20
To see Timefold Solver in action, check out [ the quickstarts] ( https://github.com/TimefoldAI/timefold-quickstarts ) .
21
21
22
- Add ` timefold-solver =={{projectVersion}} ` to your ` requirements.txt ` or ` pip install timefold-solver =={{projectVersion}} ` file to get started.
22
+ Add ` timefold=={{projectVersion}} ` to your ` requirements.txt ` or ` pip install timefold=={{projectVersion}} ` file to get started.
23
23
24
24
# Additional notes
25
25
Original file line number Diff line number Diff line change 28
28
runs-on : ubuntu-latest
29
29
environment :
30
30
name : pypi
31
- url : https://pypi.org/p/timefold-solver
31
+ url : https://pypi.org/p/timefold
32
32
permissions :
33
33
contents : write # IMPORTANT: required for action to create release branch
34
34
pull-requests : write # IMPORTANT: so release PR can be created
Original file line number Diff line number Diff line change 2
2
3
3
# Timefold Solver for Python
4
4
5
- [ ![ PyPI] ( https://img.shields.io/pypi/v/timefold-solver ?style=for-the-badge& " PyPI ")] ( https://pypi.org/project/timefold-solver / )
5
+ [ ![ PyPI] ( https://img.shields.io/pypi/v/timefold?style=for-the-badge& " PyPI ")] ( https://pypi.org/project/timefold/ )
6
6
[ ![ License] ( https://img.shields.io/github/license/TimefoldAI/timefold-solver-python?style=for-the-badge&logo=apache )] ( https://www.apache.org/licenses/LICENSE-2.0 )
7
7
[ ![ JVM support] ( https://img.shields.io/badge/Java-17+-brightgreen.svg?style=for-the-badge )] ( https://sdkman.io )
8
8
[ ![ Python support] ( https://img.shields.io/badge/Python-3.10+-brightgreen.svg?style=for-the-badge )] ( https://www.python.org/downloads )
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def find_stub_files(stub_root: str):
120
120
timefold_solver_python_version = '999-dev0'
121
121
122
122
setup (
123
- name = 'timefold-solver ' ,
123
+ name = 'timefold' ,
124
124
version = timefold_solver_python_version ,
125
125
license = 'Apache License Version 2.0' ,
126
126
license_file = 'LICENSE.txt' ,
Original file line number Diff line number Diff line change @@ -167,10 +167,10 @@ class MoveThreadCount(Enum):
167
167
168
168
class RequiresEnterpriseError (EnvironmentError ):
169
169
def __init__ (self , feature ):
170
- super ().__init__ (f'Feature { feature } requires timefold-solver- enterprise to be installed. '
170
+ super ().__init__ (f'Feature { feature } requires timefold-enterprise to be installed. '
171
171
f'See https://docs.timefold.ai/timefold-solver/latest/enterprise-edition/'
172
172
f'enterprise-edition#switchToEnterpriseEdition for instructions on how to '
173
- f'install timefold-solver- enterprise.' )
173
+ f'install timefold-enterprise.' )
174
174
175
175
176
176
Solution_ = TypeVar ('Solution_' )
You can’t perform that action at this time.
0 commit comments